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

/* ============================================
   AFTERCARE CONTENT
   ============================================ */

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

.aftercare-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Notice Card */
.notice-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--rose-gold);
}

.notice-icon {
  width: 50px;
  height: 50px;
  background: var(--rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.notice-content h3 {
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

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

/* Timeline Section */
.timeline-section h2 {
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 40px;
  text-align: center;
}

.timeline {
  position: relative;
  padding-left: 120px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink-soft), var(--rose-gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-marker {
  position: absolute;
  left: -120px;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--rose-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.timeline-marker span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--rose-gold);
  line-height: 1;
}

.timeline-marker small {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}

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

/* Guidelines Section */
.guidelines-section h2 {
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 30px;
  text-align: center;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.guideline-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.guideline-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.guideline-card.do h3 {
  color: #4CAF50;
}

.guideline-card.dont h3 {
  color: #e57373;
}

.guideline-card ul {
  list-style: none;
}

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

.guideline-card.do li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 600;
}

.guideline-card.dont li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e57373;
  font-weight: 600;
}

/* Warning Section */
.warning-section {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.warning-section h2 {
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.warning-intro {
  color: var(--text-light);
  margin-bottom: 30px;
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.warning-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #fff5f5;
  border-radius: 8px;
  border-left: 3px solid #e57373;
}

[data-theme="dark"] .warning-item {
  background: #3d2528;
}

.warning-icon {
  width: 24px;
  height: 24px;
  background: #e57373;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.warning-item span:last-child {
  color: var(--text-dark);
  font-size: 13px;
}

.emergency-contact {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.emergency-contact p {
  color: var(--text-dark);
}

.emergency-contact strong {
  color: var(--rose-gold);
  font-size: 18px;
}

.emergency-contact .small {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

/* Long-term Section */
.longterm-section h2 {
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 30px;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tip-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rose-gold);
}

.tip-card h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   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: 968px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    padding-left: 100px;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-marker {
    left: -100px;
    width: 70px;
    height: 70px;
  }
}

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

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

  .notice-card {
    flex-direction: column;
    text-align: center;
  }

  .notice-icon {
    margin: 0 auto;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-marker {
    position: relative;
    left: 0;
    margin: 0 auto 20px;
  }

  .timeline-item {
    padding-left: 0;
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .warning-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

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

  .warning-section {
    padding: 25px;
  }

  .guideline-card {
    padding: 25px;
  }
}
