/* ============================================
   LUXE LIPS - FAQ Page Styles
   ============================================ */

:root {
  --pink-light: #fdf2f4;
  --pink-soft: #f8c8dc;
  --pink-medium: #e8a0b0;
  --pink-dark: #c77d8e;
  --rose-gold: #b76e79;
  --cream: #faf8f5;
  --charcoal: #2d2d2d;
  --text-dark: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(183, 110, 121, 0.1);
  --shadow-medium: 0 8px 30px rgba(183, 110, 121, 0.15);
  --transition: all 0.3s ease;

  --bg-primary: #faf8f5;
  --bg-secondary: #ffffff;
  --bg-tertiary: #fdf2f4;
  --bg-card: #ffffff;
  --border-color: #fdf2f4;
  --text-primary: #3a3a3a;
  --text-secondary: #6a6a6a;
}

[data-theme="dark"] {
  --pink-light: #3d2830;
  --pink-soft: #5c3d4a;
  --cream: #1a1a1a;
  --charcoal: #e8e8e8;
  --text-dark: #e8e8e8;
  --text-light: #a8a8a8;
  --white: #242424;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);

  --bg-primary: #1a1a1a;
  --bg-secondary: #242424;
  --bg-tertiary: #2d2528;
  --bg-card: #2a2a2a;
  --border-color: #3d3d3d;
  --text-primary: #e8e8e8;
  --text-secondary: #a8a8a8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--rose-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ============================================
   HEADER
   ============================================ */

header {
  position: relative;
  padding: 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--pink-light);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--pink-light);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header nav ul li a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.logo {
  text-align: center;
  padding: 20px 0;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--charcoal);
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--pink-light);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  vertical-align: middle;
  margin-left: 5px;
}

.theme-toggle svg {
  width: 14px;
  height: 14px;
}

.theme-toggle:hover {
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
}

.page-hero h1 {
  font-size: 48px;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FAQ CONTENT
   ============================================ */

.faq-content {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.faq-category h2 {
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--pink-light);
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--rose-gold);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--rose-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--pink-dark) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 45px;
  background: white;
  color: var(--rose-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--rose-gold);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 40px 30px;
}

[data-theme="dark"] footer {
  background: #0f0f0f;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: var(--pink-soft);
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.7;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.footer-nav ul li a {
  font-size: 13px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  opacity: 1;
  color: var(--pink-soft);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 13px;
  opacity: 0.8;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--pink-soft);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  header nav ul {
    gap: 15px;
  }

  header nav ul li a {
    font-size: 10px;
  }

  .page-hero {
    padding: 60px 20px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .faq-content {
    padding: 60px 20px;
  }

  .faq-category h2 {
    font-size: 24px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .cta {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  header nav {
    flex-direction: column;
    gap: 10px;
  }

  .logo a {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .faq-question span {
    padding-right: 15px;
  }
}
