@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Antic+Didone&family=Josefin+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #FAF8F5;
  --cream-dark: #F5F1EB;
  --blush: #F2E6E3;
  --blush-dark: #E8D5D0;
  --gold: #C4A574;
  --gold-light: #D9C9A8;
  --text-dark: #4A4543;
  --text-medium: #6A6563;
  --text-light: #8A8583;
  
  --root: #C4726C;
  --sacral: #D4956C;
  --solar: #C9B896;
  --heart: #7BAE7B;
  --throat: #6CA4C4;
  --third-eye: #8B7BC4;
  --crown: #B488B4;
  
  --font-logo: 'Great Vibes', cursive;
  --font-script: 'Cormorant Garamond', serif;
  --font-display: 'Antic Didone', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-accent: 'Josefin Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(242, 230, 227, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(197, 205, 184, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(232, 213, 208, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--text-dark); }
a { color: inherit; text-decoration: none; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
/* Updated Logo Styles */
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  font-family: var(--font-logo); font-size: 1.4rem; font-style: italic; color: var(--text-dark);
}
.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-link {
  font-family: var(--font-accent);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-medium);
  padding: 0.5rem 0; position: relative; transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); margin: 5px 0; transition: 0.3s; }

.container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* Ornament */
.ornament {
  width: 50px; height: 25px; margin: 1.5rem auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 25'%3E%3Cpath d='M25 3 Q30 12 25 22 Q20 12 25 3' fill='none' stroke='%23C4A574' stroke-width='1'/%3E%3Cpath d='M15 12 Q25 7 35 12' fill='none' stroke='%23C4A574' stroke-width='0.8'/%3E%3Ccircle cx='25' cy='12' r='2' fill='%23C4A574' opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.ornament-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-light), transparent);
  margin: 1rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-accent); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid var(--text-dark);
  background: transparent; color: var(--text-dark);
  cursor: pointer; transition: all 0.3s; border-radius: 0;
}
.btn:hover { background: var(--text-dark); color: var(--cream); }

.btn-light {
  border: 1px solid var(--text-light); color: var(--text-medium);
  border-radius: 20px; padding: 0.7rem 2rem;
}
.btn-light:hover { background: var(--text-light); color: var(--cream); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 5rem 2rem 4rem;
}
.hero-logo { margin-top: -50px; margin-bottom: 1rem; }
.big-hero-logo {
  width: clamp(320px, 25vw, 550px);
}


.hero-tagline {
  font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-light); margin: 0.5rem 0 1rem;
}
.brand-name {
  font-family: var(--font-logo); font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300; font-style: italic; line-height: 1.1; margin-bottom: 2rem;
}
.hero h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.hero-description {
  max-width: 400px; font-size: 1rem; color: var(--text-medium);
  margin-bottom: 2rem; line-height: 1.8;
}

section { padding: 4rem 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { font-family: var(--font-script); font-style: italic; font-size: 1.1rem; color: var(--text-light); text-align: center; margin-bottom: 2rem; }

/* Page Hero */
.page-hero { padding: 8rem 2rem 3rem; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); }

/* Not a Product */
.not-product { text-align: center; padding: 3rem 2rem; }
.not-product h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.not-product h2 em { font-family: var(--font-script); }
.not-product p { max-width: 500px; margin: 0 auto 1rem; color: var(--text-medium); }
.not-product .highlight { font-family: var(--font-script); font-style: italic; color: var(--text-dark); font-size: 1.15rem; margin-top: 1.5rem; }

/* Experience */
.experience-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; max-width: 800px; margin: 0 auto; }
.experience-image img { width: 100%; max-width: 320px; border-radius: 4px; box-shadow: 0 15px 40px rgba(74, 69, 67, 0.12); }
.experience-text p { color: var(--text-medium); margin-bottom: 1rem; }
.experience-text .highlight { font-family: var(--font-script); font-style: italic; color: var(--text-dark); font-size: 1.1rem; margin-top: 1rem; }

/* Hamper */
.hamper-section { text-align: center; }
.hamper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 700px; margin: 2rem auto 0; text-align: left; }
.hamper-item h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem; }
.hamper-item h4::before { content: '◇'; color: var(--gold); font-size: 0.7rem; }
.hamper-item p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; }
.hamper-extras { margin-top: 2rem; font-size: 0.95rem; color: var(--text-light); }
.hamper-extras ul { list-style: none; display: flex; justify-content: center; gap: 1.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.hamper-extras li::before { content: '• '; color: var(--gold); }

/* Why 21 Days */
.why-21 { text-align: center; padding: 3rem 2rem; }
.why-21 p { max-width: 480px; margin: 0 auto; color: var(--text-medium); }
.why-21 .benefits { margin-top: 1.5rem; font-size: 0.95rem; color: var(--text-light); }

/* Keeper */
.keeper-content { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; max-width: 750px; margin: 0 auto; align-items: start; }
.keeper-image img { width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(74, 69, 67, 0.12); }
.keeper-text h2 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.keeper-name { font-family: var(--font-script); font-style: italic; font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.keeper-text p { color: var(--text-medium); margin-bottom: 1rem; font-size: 0.95rem; }

/* Calling & Associations */
.calling-section, .associations, .enquiries { text-align: center; padding: 2rem; }
.calling-section p { max-width: 550px; margin: 0 auto 1rem; color: var(--text-medium); }
.associations h3, .enquiries h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.associations p { color: var(--text-medium); font-size: 0.95rem; }
.associations address { font-style: normal; margin-top: 1rem; color: var(--text-medium); line-height: 1.8; }
.enquiries a { color: var(--gold); font-size: 1rem; }

/* QUIZ PAGE SPECIFIC STYLES */
.quiz-hero { padding: 6rem 2rem 2rem; text-align: center; }
.quiz-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.quiz-hero .subtitle { font-family: var(--font-script); font-style: italic; font-size: 1.1rem; color: var(--text-light); }
.quiz-section { text-align: center; padding: 2rem; }
.quiz-title { font-size: 1.4rem; margin-bottom: 1.5rem; font-family: var(--font-display); }
.quiz-intro { color: var(--text-medium); margin-bottom: 0.5rem; }
.quiz-intro em { font-family: var(--font-script); color: var(--text-light); }

/* Quiz Options Vertical */
.quiz-options-vertical {
  display: flex; flex-direction: column; gap: 0.8rem;
  max-width: 500px; margin: 0 auto;
}
.quiz-option-btn {
  padding: 1rem 1.5rem; background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(232, 213, 208, 0.5); border-radius: 4px;
  font-family: var(--font-body); font-size: 1rem; color: var(--text-dark);
  cursor: pointer; transition: all 0.3s ease; text-align: left;
}
.quiz-option-btn:hover { background: var(--blush); border-color: var(--gold); transform: translateX(5px); }
.quiz-option-btn.selected { background-color: var(--blush); border-color: var(--gold); color: var(--text-dark); font-weight: 500; }

/* Quiz Progress & Navigation */
.progress-indicator { font-family: var(--font-accent); font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; letter-spacing: 0.1em; }
#quiz-question-container { transition: opacity 0.3s ease; }

.quiz-nav-controls {
  display: flex; justify-content: space-between; margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid var(--blush); max-width: 500px; margin-left: auto; margin-right: auto;
}
.btn-nav {
  font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.8rem 1.5rem; cursor: pointer; border: 1px solid var(--text-dark);
  background: transparent; transition: all 0.3s; font-size: 0.8rem;
}
.btn-next { background: var(--text-dark); color: var(--cream); }
.btn-next:hover { background: var(--gold); border-color: var(--gold); }
.btn-next:disabled { background: #ccc; border-color: #ccc; cursor: not-allowed; }
.btn-prev { border: none; color: var(--text-medium); }
.btn-prev:hover { color: var(--text-dark); }
.btn-prev:disabled { opacity: 0; pointer-events: none; }

/* Footer */
.footer { padding: 3rem 2rem; text-align: center; background: rgba(245, 241, 235, 0.5); border-top: 1px solid var(--blush); }
.footer-logo { font-family: var(--font-logo); font-size: 2rem; font-style: italic; margin-bottom: 0.25rem; }
.footer-tagline { font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-medium); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--text-light); margin-top: 1.5rem; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 250px;
    background: var(--cream); flex-direction: column; justify-content: center; align-items: center;
    gap: 1.5rem; transition: right 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .experience-content, .keeper-content, .hamper-grid { grid-template-columns: 1fr; }
  .keeper-image { max-width: 180px; margin: 0 auto; }
  .hero { padding-top: 7rem; }
}

/* ================================
   ADDED: CHAKRA CARDS FIX (DO NOT REMOVE OLD CSS)
================================ */

.chakra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.chakra-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.chakra-card:hover {
  transform: translateY(-5px);
}

.chakra-card h4 {
  font-size: clamp(1.5rem, 1.2vw + 1rem, 1.9rem);
  margin-bottom: 0.4rem;
}

.chakra-subtitle {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1rem, 0.8vw + 0.6rem, 1.2rem);
  margin-bottom: 1.2rem;
}

.chakra-hint {
  font-size: clamp(0.95rem, 0.6vw + 0.6rem, 1.05rem);
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.chakra-card ul {
  list-style: none;
  margin-bottom: 1rem;
}

.chakra-card li {
  font-size: clamp(0.95rem, 0.6vw + 0.6rem, 1.05rem);
  color: var(--text-medium);
  padding-left: 0.8rem;
  margin-bottom: 0.25rem;
  position: relative;
  line-height: 1.7;
}

.chakra-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* Chakra Colors */
.chakra-root { border-color: var(--root); }
.chakra-sacral { border-color: var(--sacral); }
.chakra-solar { border-color: var(--solar); }
.chakra-heart { border-color: var(--heart); }
.chakra-throat { border-color: var(--throat); }
.chakra-crown { border-color: var(--crown); }

/* Mobile Fix */
@media (max-width: 768px) {
  .chakra-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SOUL RITUAL LIVE EXPERIENCE ADDITIONS
   DO NOT REMOVE ANY EXISTING CSS
================================ */

/* 🌬️ BREATHING BACKGROUND (Very subtle luxury motion) */
body {
  background: linear-gradient(-45deg, #FAF8F5, #F5F1EB, #EFE6DE, #F9F3ED);
  background-size: 400% 400%;
  animation: soulGradient 25s ease infinite;
}

@keyframes soulGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ✨ FLOATING SOUL PARTICLES */
.soul-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.soul-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: floatSoul 25s linear infinite;
}

@keyframes floatSoul {
  from {
    transform: translateY(110vh) translateX(0);
  }
  to {
    transform: translateY(-10vh) translateX(60px);
  }
}

/* 🌙 SOFT GLOW FOR HAMPEr ITEMS */
.hamper-item {
  transition: all 0.6s ease;
}

.hamper-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(196, 165, 116, 0.15);
}

/* 🧘 CINEMATIC TEXT FADE */
h2, h3, h4, p {
  transition: opacity 1s ease, transform 1s ease;
}

/* 🌿 LUXURY NAV HOVER GLOW */
.nav-link:hover {
  text-shadow: 0 0 10px rgba(196,165,116,0.2);
}

/* ✨ HERO SOUL GLOW LOGO */
.nav-logo img,
.big-hero-logo {
  filter: drop-shadow(0 0 10px rgba(196,165,116,0.15));
  transition: transform 0.6s ease;
}

.nav-logo img:hover,
.big-hero-logo:hover {
  transform: scale(1.03);
}

/* 🌊 EXPERIENCE IMAGE FLOATING EFFECT */
.experience-image img {
  animation: floatKit 8s ease-in-out infinite;
}

@keyframes floatKit {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ✨ BUTTON LUXURY RIPPLE */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(196,165,116,0.15) 10%, transparent 60%);
  top: -10%;
  left: -10%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn:hover::after {
  opacity: 1;
}

/* 🧿 CHAKRA CARDS SOUL HOVER */
.chakra-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transform: translateY(-8px) scale(1.01);
}

/* 🌙 FOOTER SLOW FADE */
.footer {
  backdrop-filter: blur(3px);
}

/* 🌬️ SOFT SCROLL SMOOTHNESS */
html {
  scroll-behavior: smooth;
}

/* ✨ PAGE LOAD FADE-IN */
body {
  animation: pageFade 1.8s ease;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
