:root{
  --pink: #F7D6E0;
  --purple: #E5D1FF;
  --blue: #D8EEFF;
  --anchor: #2B2B33; /* Base color for text */
  --neutral-dark: #F0F3F7;
  --muted: #B7A6C9;
  --cta: #F0A9C3;
  --gold: #E9CFA7;
  --bg-gradient-start: #D8EEFF;
  --bg-gradient-mid: #E5D1FF;
  --bg-gradient-end: #F7D6E0;
  --glass-alpha: 0.12;
  --glass-border-alpha: 0.10;
  --shadow: 0 8px 24px rgba(43,43,51,0.10);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --navbar-height: 80px;
}

* {box-sizing: border-box;}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar { /* Added body */
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--anchor);
  background: linear-gradient(120deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 55%, var(--bg-gradient-end) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  /* Added scrollbar hiding rules for body */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

main.container {
  padding-top: calc(var(--navbar-height) + 36px); /* Adjusted top padding */
  padding-bottom: 3rem;
  width: 100%;
  flex-grow: 1;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Scroll Snap Alignment */
.hero-section,
.meet-chynna,
.page-section,
.tip-jar-section,
.service-section,
.booking-section,
.contact-section,
footer {
  scroll-snap-align: start;
}


/* ---------------------------------- */
/* Navigation Bar */
/* ---------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem;
  z-index: 1000;
  flex-wrap: nowrap;
  height: var(--navbar-height);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1 1 auto;
  min-width: 150px;
}

.nav-left {justify-content: flex-start;}
.nav-right {justify-content: flex-end;}

/* Default Nav Link Style (Dark Text) */
.nav-link {
  text-decoration: none;
  color: var(--anchor); /* Default dark color */
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  /* Default subtle glow for non-home pages */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
  opacity: 0.7; /* Adjust hover for dark text */
}

/* Fixed Logo Styling */
.logo {
  position: fixed;
  left: 50%;
  top: 15px; /* Default top position */
  transform: translateX(-50%);
  z-index: 1001;
}

.logo img {
  height: 160px; /* Default size for non-home pages */
  width: auto;
  display: block;
}

.social-icon img {
  height: 24px;
  width: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

/* --- Styles for Navbar ONLY on Home Page --- */
.home-page .navbar .nav-link {
  color: white; /* White text on home page */
  /* --- Magical Gold Glow on Home Page --- */
  text-shadow: 0 0 12px var(--gold);
}

.home-page .navbar .nav-link:hover {
  opacity: 0.8; /* Adjust hover opacity for white text */
}

.home-page .navbar .dropdown-button::after {
  color: white; /* White arrow on home page */
  text-shadow: 0 0 12px var(--gold); /* Gold glow */
}

.home-page .navbar .hamburger-line {
   background: white; /* White hamburger lines */
   box-shadow: 0 0 8px var(--gold); /* Gold glow */
}

/* Specific logo size for home page */
.home-page .logo img {
   height: 234px;
}
/* --- End Home Page Navbar Styles --- */

/* --- Dropdown Menu --- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-button .nav-link {
  padding-right: 0;
  pointer-events: none;
}
/* Default Dropdown Arrow Style (Dark) */
.dropdown-button::after {
  content: '▼';
  font-size: 0.6rem;
  color: var(--anchor); /* Default dark color */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Default glow */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: var(--radius-sm);
  top: 100%;
  left: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown.active .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  color: var(--anchor);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* --- Hamburger button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  z-index: 1100;
}

/* Default Hamburger Style (Dark) */
.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--anchor); /* Default dark color */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* --- Mobile navigation --- */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: var(--neutral-dark);
  padding: 1rem 2rem 2rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  max-height: 0;
}

.mobile-nav.active {
  display: flex;
  max-height: 500px;
}

.mobile-nav-link {
  padding: 1rem 0;
  border-bottom: 1px solid var(--muted);
  color: var(--anchor);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav .dropdown {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--muted);
}
.mobile-nav .dropdown-button {
  padding: 1rem 0;
  width: 100%;
  justify-content: space-between;
}
.mobile-nav .dropdown-button .nav-link {
  text-shadow: none;
  color: var(--anchor);
}
.mobile-nav .dropdown-button::after {
  text-shadow: none;
  color: var(--anchor);
}
.mobile-nav .dropdown-content {
  position: static;
  display: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 1rem;
  opacity: 1;
  visibility: visible;
  transform: none;
  min-width: 0;
  transition: none;
}
.mobile-nav .dropdown.active .dropdown-content {
  display: block;
}
.mobile-nav .dropdown-content a {
  padding: 0.75rem 0;
  border-bottom: 1px dotted var(--muted);
  font-size: 0.85rem;
  color: var(--anchor);
}
.mobile-nav .dropdown-content a:last-child {
  border-bottom: none;
}


/* ---------------------------------- */
/* Hero Section (index.html) */
/* ---------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--anchor);
}

#bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 2rem 3rem;
  background: rgba(255 255 255 / 0.35);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ---------------------------------- */
/* Meet Chynna (index.html) */
/* ---------------------------------- */
.meet-chynna {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #fff;
  color: #333;
}
.meet-chynna .two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  justify-content: center;
}
.meet-chynna .image-column {
  flex: 1;
  order: 1;
  text-align: center;
}
.meet-chynna .image-column img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
.meet-chynna .text-column {
  flex: 1;
  order: 2;
  text-align: left;
}
.meet-chynna h2 {
  font-size: 2.5rem;
  color: #b873d9;
  margin-bottom: 10px;
}
.meet-chynna h3 {
  color: #d78dbf;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.meet-chynna p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.meet-chynna .btn-primary {
  padding: 12px 24px;
  background-color: #d78dbf;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
.meet-chynna .btn-primary:hover {
  background-color: #c06daa;
}

/* ---------------------------------- */
/* About Page (about.html) */
/* ---------------------------------- */
.page-section {
  position: relative;
  width: 100%;
  background-color: #fffaf900;
  padding: calc(var(--navbar-height) + 40px) 20px 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255, 250, 249, 0.95);
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
}

.content-wrapper .image-column {
  flex: 1;
  max-width: 350px;
  min-width: 300px;
}

.content-wrapper .image-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}

.content-wrapper .text-column {
  flex: 2;
  min-width: 300px;
}

.content-wrapper .text-column h2 {
  color: #c384c9;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.content-wrapper .text-column p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: left;
}

/* --- Accordion (on About Page) --- */
.accordion {
  max-width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #5a2b6e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  color: #c384c9;
  transition: transform 0.2s ease;
}
.accordion-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion-button:focus {
  outline: 2px solid #d78dbf;
  outline-offset: 2px;
}

.accordion-content {
  padding: 0 15px 15px 15px;
  font-size: 1rem;
  color: #333;
  display: none;
  line-height: 1.6;
}
.accordion-content p {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 15px;
}

.accordion-content[hidden] {
  display: none;
}

.accordion-content:not([hidden]) {
  display: block;
}

/* ---------------------------------- */
/* Tip Jar Section (about.html) */
/* ---------------------------------- */
.tip-jar-section {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,var(--glass-alpha)), rgba(255,255,255,var(--glass-alpha)));
  backdrop-filter: blur(6px) saturate(1.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,var(--glass-border-alpha));
  box-shadow: var(--shadow);
}
.tip-jar-section h2 {
  font-size: 2.2rem;
  color: #5a2b6e;
  margin-top: 0;
}
.tip-jar-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}
.payment-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.payment-links a {
  display: inline-block;
  padding: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--anchor);
  font-weight: 600;
}
.payment-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.payment-links img {
  height: 40px;
  width: auto;
}

/* --- Tip Jar Animation --- */
.tip-jar-animation {
  font-size: 4rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.tip-jar-animation .jar {
  display: inline-block;
}
.tip-jar-animation .cash {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -150%);
  animation: drop-cash 2s ease-in-out infinite;
  opacity: 0;
}
@keyframes drop-cash {
  0% { transform: translate(-50%, -150%); opacity: 0; }
  25% { transform: translate(-50%, -100%); opacity: 1; }
  75% { transform: translate(-50%, -20%); opacity: 1; }
  100% { transform: translate(-50%, -20%); opacity: 0; }
}

/* ---------------------------------- */
/* Services Page (services.html) */
/* ---------------------------------- */
.service-section {
  max-width: 800px;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,var(--glass-alpha)), rgba(255,255,255,var(--glass-alpha)));
  backdrop-filter: blur(6px) saturate(1.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,var(--glass-border-alpha));
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: var(--navbar-height);
}
.service-section h2 {
  font-size: 2.2rem;
  color: #5a2b6e;
  border-bottom: 2px solid var(--cta);
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 1rem;
}
.service-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px dashed var(--muted);
}
.price-list li:last-child {
  border-bottom: none;
}
.price-list .item {
  font-weight: 600;
  color: #333;
}
.price-list .price {
  font-weight: 700;
  color: #5a2b6e;
  background: var(--purple);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  margin-left: 10px;
}
.service-section .btn-primary {
  margin-top: 20px;
  text-decoration: none;
}


/* ---------------------------------- */
/* Get A Reading (getareading.html) */
/* ---------------------------------- */
.booking-section, .contact-section {
  max-width: 1000px;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,var(--glass-alpha)), rgba(255,255,255,var(--glass-alpha)));
  backdrop-filter: blur(6px) saturate(1.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,var(--glass-border-alpha));
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: var(--navbar-height);
}
.booking-section h2, .contact-section h2 {
  font-size: 2.2rem;
  color: #5a2b6e;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.booking-section p, .contact-section p {
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.booking-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch; /* Make embeds same height if possible */
}
.calendar-embed {
  flex: 1;
  min-width: 300px;
  width: 100%;
  max-width: 450px;
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  border: 1px dashed var(--muted);
  overflow: hidden; /* Hide potential overflow */
  min-height: 600px; /* Default min height */
}
.calendar-embed iframe,
.calendar-embed > div { /* Target Koalendar's div */
  width: 100%;
  height: 100%;
  min-height: inherit; /* Inherit min-height from parent */
  border: none;
  /* Removed border-radius as it might clip iframe content */
}

/* Specific styling if needed */
.koalendar-embed {
  /* Koalendar specific styles if necessary */
}
.google-calendar-embed {
  /* Google Calendar specific styles if necessary */
}


/* ---------------------------------- */
/* General Card Layout (Old) */
/* ---------------------------------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,var(--glass-alpha)), rgba(255,255,255,var(--glass-alpha)));
  backdrop-filter: blur(6px) saturate(1.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,var(--glass-border-alpha));
  box-shadow: var(--shadow);
  padding: 2rem;
  margin: 1.5rem auto;
  max-width: 600px;
  width: 95%;
}
.card h1 {
  text-align: center;
  margin-top: 0;
}

/* ---------------------------------- */
/* Button Styling */
/* ---------------------------------- */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  padding:12px 20px;
  border-radius:999px;
  font-weight:600;
  transition: transform .14s ease, box-shadow .14s ease;
  box-shadow: 0 6px 18px rgba(43,43,51,0.08);
  text-decoration: none;
}

.btn-primary{
  background: linear-gradient(180deg, var(--cta), #eb94ad);
  color:#000000;
  font-size:15px;
}

.btn-primary:active{transform:translateY(1px);}

/* ---------------------------------- */
/* Form Styles */
/* ---------------------------------- */
.card form, .contact-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.card input[type="text"],
.card input[type="email"],
.card textarea,
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--purple);
  background: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 1rem;
  color: var(--anchor);
  line-height: 1.4;
}

.card input[type="text"]::placeholder,
.card input[type="email"]::placeholder,
.card textarea::placeholder,
.contact-section input[type="text"]::placeholder,
.contact-section input[type="email"]::placeholder,
.contact-section textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.card form .btn,
.contact-section form .btn {
  width: 100%;
  margin-top: 12px;
  font-size: 1rem;
}

/* ---------------------------------- */
/* Footer */
/* ---------------------------------- */
footer {
  width: 100%;
  padding: 2rem 1rem;
  margin-top: auto;
}

footer p {
  text-align: center;
  color: var(--anchor);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

/* ---------------------------------- */
/* Responsive adjustments */
/* ---------------------------------- */
@media (max-width: 900px) {
  .navbar {
    padding: 0.75rem 2rem;
  }
  .logo {
     top: 52px; /* New vertical position for tablets */
  }
  .logo img {
     /* Tablet size (Adjust as needed) */
     height: 120px;
  }
  /* Specific home page tablet size */
  .home-page .logo img {
     height: 140px; /* Example size, adjust if needed */
  }
  .nav-left, .nav-right {
    gap: 1rem;
  }
  .hero-content {
    font-size: 0.95rem;
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .nav-left, .nav-right {
    display: none;
  }

  /* Reset logo for mobile */
  .logo {
    position: static;
    transform: none;
    margin: 0 auto;
    z-index: auto;
    top: auto;
    left: auto;
  }

  .logo img {
     height: 45px; /* Back to smaller size */
  }
  /* Ensure home page logo is also small on mobile */
  .home-page .logo img {
     height: 45px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .meet-chynna .two-column {
    flex-direction: column;
  }
  .meet-chynna .image-column,
  .meet-chynna .text-column {
    order: 0;
    text-align: center;
  }
  .meet-chynna .text-column {
    text-align: left;
  }

  .content-wrapper {
    flex-direction: column;
    padding: 20px;
  }
  .content-wrapper .text-column h2,
  .content-wrapper .text-column p {
    text-align: left;
  }
  .page-section {
    padding: calc(var(--navbar-height) + 20px) 10px 20px 10px;
  }

  .card, .service-section, .booking-section, .contact-section {
    padding: 1.5rem;
  }

  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Adjust embed height for mobile */
  .calendar-embed {
    min-height: 400px;
  }
}