/* ============================================
   LUXE LIPS - Privacy Policy 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;
}

/* ============================================
   PRIVACY CONTENT
   ============================================ */

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

.privacy-container {
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.last-updated {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.last-updated p {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-light);
}

.policy-section h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin: 25px 0 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul {
  list-style: none;
  margin-bottom: 15px;
}

.policy-section li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--rose-gold);
  border-radius: 50%;
}

.policy-section li strong {
  color: var(--text-dark);
}

.contact-info {
  background: var(--pink-light);
  padding: 25px 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* ============================================
   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;
  }

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

  .privacy-container {
    padding: 30px;
  }

  .policy-section h2 {
    font-size: 22px;
  }

  .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;
  }

  .privacy-container {
    padding: 20px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .contact-info {
    padding: 20px;
  }
}
