@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff8f5;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
	
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #b83e46;
  margin-bottom: 20px;
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

p, li {
  font-size: 16px;
}

/* === Global Section Spacing === */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}

/* === Hero Section === */
.hero {
  padding: 80px 20px;
  background-color: #fdf6f0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.hero-image {
  flex: 1 1 500px;
  max-width: 600px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: contain;
}
.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;	
  line-height: 1.6;
  margin-bottom: 30px;
}
/* === Section Headings === */
section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
/* === Paragraph Intro === */
.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}
.what-included ul {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}
/* === Steps Section Layout === */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.step {
  flex: 1 1 220px;
  text-align: center;
  padding: 20px;
}
.step .icon {
  font-size: 36px;
  margin-bottom: 15px;
}
/* === Icon Style (for SVGs) === */
.icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.cta {
  background: #fdf6f0;
}
/* === CTA Button === */
.cta-button {
  display: inline-block;
  background-color: #b83e46;
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #a54548;
}
.site-footer {
  background-color: #f8f2ee;
  color: #333;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}
.site-footer a {
  color: #b83e46;
  text-decoration: none;
  margin: 0 8px;
}
.site-footer a:hover {
  text-decoration: underline;
}
/* === Header === */
.site-header {
  background-color: #fff8f5;
  padding: 20px 40px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.main-nav a:hover {
  color: #b83e46;
}
.main-nav .cta-button.small {
  padding: 10px 20px;
  font-size: 14px;
  margin-left: 30px;
}
.what-included .icon {
  vertical-align: middle;
  margin-right: 10px;
}
.what-included li {
  transition: transform 0.2s ease, background-color 0.2s ease;
  padding: 6px 10px;
  border-radius: 6px;
}
.what-included li:hover {
  transform: translate(4px);
  background-color: #fdf6f0;
}
.what-included, .how-it-works, .packages {
  border-top: 1px solid #f0d8d3; /* light blush line */
  margin-top: 60px;
  padding-top: 60px;
}

/* === Icon Reveal Animation === */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* Add this class when it's in view */
.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
  animation: slideFadeIn 0.6s ease forwards;
}

/* Add a delay for each item using nth-child */
.animate-up li:nth-child(1) { animation-delay: 0.1s; }
.animate-up li:nth-child(2) { animation-delay: 0.2s; }
.animate-up li:nth-child(3) { animation-delay: 0.3s; }
.animate-up li:nth-child(4) { animation-delay: 0.4s; }
.animate-up li:nth-child(5) { animation-delay: 0.5s; }
.animate-up li:nth-child(6) { animation-delay: 0.6s; }
.animate-up li:nth-child(7) { animation-delay: 0.7s; }
.animate-up li:nth-child(8) { animation-delay: 0.8s; }


/* Initial state */
.steps .step.animate-up {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* When in view */
.steps .step.animate-up.in-view {
  animation: slideFadeIn 0.6s ease forwards;
}

/* Delays */
.steps .step.animate-up.in-view:nth-child(1) { animation-delay: 0.1s; }
.steps .step.animate-up.in-view:nth-child(2) { animation-delay: 0.2s; }
.steps .step.animate-up.in-view:nth-child(3) { animation-delay: 0.3s; }
.steps .step.animate-up.in-view:nth-child(4) { animation-delay: 0.4s; }
.steps .step.animate-up.in-view:nth-child(5) { animation-delay: 0.5s; }


               /* MOBILE */

/* Slide animation */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Package Grid Layout */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

/* Optional: Card Styling */
.package-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.package-card:hover {
  transform: translateY(-5px);
}

/* Optional: Featured Card */
.package-card.featured {
  border: 2px solid #b83e46;
}
.package-btn {
  display: inline-block;
  margin: 1.5rem auto 0 auto;
  padding: 0.6rem 1.2rem;
  background-color: #b83e46;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.package-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card ul {
  flex-grow: 1;
}

.package-btn {
  align-self: center;
}


.package-btn:hover {
  background-color: #a54548;
  transform: translateY(-2px);
}
.package-card.featured {
  border: none;
  background-color: #fdf1f1; /* Soft blush background */
  box-shadow: 0 8px 24px rgba(184, 62, 70, 0.15); /* Slightly deeper shadow */
}
.package-card.featured h3,
.package-card.featured .price {
  color: #b83e46;
}
/* === CTA Highlighted Section === */
.cta.highlight {
  background-color: #fbe3d3;
  border-top: 1px solid #f0d8d3;
  text-align: center;
  padding: 80px 20px;
}

.cta.highlight h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #b83e46;
}

.cta.highlight p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.cta.highlight .cta-button {
  display: inline-block;
  background-color: #b83e46;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta.highlight .cta-button:hover {
  background-color: #a54548;
  transform: translateY(-2px);
}
.cta-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  animation: ring-pop 1s ease forwards;
}

@keyframes ring-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  /* Mobile styles will go here */
}

/* === Mobile Nav Styles === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #b83e46;
  border-radius: 2px;
}

/* Show hamburger and hide nav on smaller screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff8f5;
    padding: 20px;
    border-radius: 10px;
  }

  .main-nav a {
    font-size: 16px;
    display: block;
    width: 100%;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo {
    max-height: 45px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 10px;
  }

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

  .hero-text p {
    font-size: 16px;
  }

  .hero-image {
    max-width: 100%;
    height: auto;
  }

 .hero-image img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 10px;
  object-fit: contain;
}
}
@media (max-width: 768px) {
  .cta.highlight {
    padding: 60px 20px;
  }

  .cta.highlight h2 {
    font-size: 24px;
  }

  .cta.highlight p {
    font-size: 16px;
    line-height: 1.6;
  }

  .cta.highlight .cta-button {
    font-size: 15px;
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .cta-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

/* === MOBILE BREAKPOINTS === */
@media (max-width: 768px) {

  /* === Hero Section === */
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image {
    height: auto;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* === Header === */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff8f5;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }

  /* === Logo === */
  .site-logo {
    max-height: 40px;
  }

  /* === Packages Section === */
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 24px;
  }

  .package-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 0;
  }

  /* === What's Included === */
  .what-included ul {
    font-size: 15px;
  }

  .what-included .icon {
    width: 24px;
    height: 24px;
  }

  /* === How It Works === */
  .steps {
    flex-direction: column;
    gap: 30px;
  }

  .step {
    padding: 0;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 15px;
  }

  /* === CTA Section === */
  .cta.highlight h2 {
    font-size: 24px;
  }

  .cta.highlight p {
    font-size: 16px;
  }
}

/* --- GLOBAL: tighten section spacing on phones --- */
@media (max-width: 768px) {
  section { padding: 48px 16px; max-width: 720px; }
  p, li { font-size: 16px; line-height: 1.7; }
}

/* --- HEADER: hamburger on the LEFT + stacked layout --- */
@media (max-width: 768px) {
  .site-header { padding: 12px 16px; }
  .header-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* put burger on the far left, then logo, then the hidden nav */
  .menu-toggle { order: -1; display: flex; width: 28px; height: 22px; }
  .site-logo   { max-height: 40px; }

  /* mobile drawer */
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 64px;     /* just below header */
    background: #fff8f5;
    border-top: 1px solid #f0d8d3;
    padding: 16px;
    z-index: 1000;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0;
  }
  .main-nav a { display: block; padding: 10px 6px; }
  .main-nav .cta-button { width: 100%; text-align: center; }
}

/* --- HERO: image first, full width; readable type --- */
@media (max-width: 768px) {
  .hero           { padding-top: 32px; }
  .hero-content   { flex-direction: column-reverse; text-align: center; gap: 20px; }
  .hero-image     { width: 100%; max-width: 100%; height: auto; }
  .hero-image img { width: 100%; height: auto; border-radius: 10px; max-height: none; object-fit: contain; }
  .hero-text h1   { font-size: 28px; line-height: 1.2; margin-bottom: 12px; }
  .hero-text p    { font-size: 16px; margin-bottom: 20px; }
  .cta-button     { font-size: 15px; padding: 12px 20px; }
}

/* --- WHAT’S INCLUDED: larger line height + icon size --- */
@media (max-width: 768px) {
  #what-included h2 { font-size: 26px; text-align: center; }
  .what-included ul { max-width: 640px; }
  .what-included .icon { width: 24px; height: 24px; margin-right: 10px; }
  .what-included li { padding: 8px 10px; }
}

/* --- HOW IT WORKS: single column, clearer copy size --- */
@media (max-width: 768px) {
  #how-it-works h2 { font-size: 26px; text-align: center; }
  .steps           { flex-direction: column; gap: 24px; }
  .step h3         { font-size: 18px; margin: 8px 0; }
  .step p          { font-size: 15px; }
}

/* --- PACKAGES: one card per row, full-width button --- */
@media (max-width: 768px) {
  #packages h2     { font-size: 26px; text-align: center; }
  .package-grid    { grid-template-columns: 1fr; gap: 20px; }
  .package-card    { padding: 22px; }
  .package-btn     { width: 100%; font-size: 15px; padding: 12px 0; }
}

/* --- CTA BAND: comfy sizing on phones --- */
@media (max-width: 768px) {
  .cta.highlight         { padding: 56px 16px; }
  .cta.highlight h2      { font-size: 24px; }
  .cta.highlight p       { font-size: 16px; }
  .cta.highlight .cta-button { width: 100%; max-width: 320px; }
  .cta-icon              { font-size: 32px; margin-bottom: 8px; }
}

/* HERO – tighten spacing on phones */
@media (max-width: 768px) {
  .hero { padding: 28px 16px 36px; }   /* less top/bottom padding */
  .hero-content { flex-direction: column-reverse; gap: 10px; }
  .hero-image { margin: 0; }                        /* kill any stray margins */
  .hero-text { margin: 0; text-align: center; }     /* no top gap before text */
  .hero-text h1 { margin: 6px 0 8px; font-size: 28px; line-height: 1.2; }
  .hero-text p  { margin: 0 0 16px; font-size: 16px; line-height: 1.6; }
  .cta-button   { padding: 12px 20px; font-size: 15px; }
}

/* HEADER – burger fixed to the left on phones */
@media (max-width: 768px) {
  .site-header { padding: 12px 16px; position: sticky; top: 0; z-index: 1000; }
  .header-container { position: relative; align-items: center; gap: 12px; }

  .menu-toggle {
    display: flex; position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 22px; padding: 0; background: transparent; border: 0;
  }
  .menu-toggle .bar { width: 26px; height: 3px; background: #b83e46; border-radius: 2px; margin: 3px 0; }

  /* give the logo a little left padding so it won't overlap the burger */
  .site-logo { max-height: 40px; margin-left: 44px; }

  /* mobile dropdown */
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: #fff8f5; border-top: 1px solid #f0d8d3; padding: 16px; border-radius: 10px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
  .main-nav a { display: block; padding: 10px 6px; }
  .main-nav .cta-button { width: 100%; text-align: center; }
}

/* CTA BAND – fix layout and button on phones */
@media (max-width: 768px) {
  .cta.highlight { background: #fbe3d3; padding: 48px 16px; }
  .cta.highlight .cta-content {
    max-width: 680px; margin: 0 auto; text-align: center;
    background: transparent; box-shadow: none; border-radius: 0;
  }
  .cta-icon { display: inline-block; font-size: 32px; margin-bottom: 10px; }
  .cta.highlight h2 { font-size: 24px; margin: 6px 0 10px; }
  .cta.highlight p  { font-size: 16px; line-height: 1.7; margin: 0 auto 16px; max-width: 36ch; }
  .cta.highlight .cta-button {
    display: inline-block; width: auto; padding: 12px 22px;
    font-size: 15px; border-radius: 8px; /* not full-width; no weird rectangle */
  }
}

/* Only affect the How It Works section */
#how-it-works .icon {
  /* neutralize the global 40x40 icon box */
  width: auto;
  height: auto;
  margin-bottom: 15px;
  display: block;   /* centers with margin: 0 auto on children */
}

/* make the PNG rocket match the 5em SVGs */
#how-it-works .rocket-img {
  width: 5em;       /* matches your SVG width="5em" */
  height: auto;     
  display: block;
  margin: 0 auto;   /* centers it like the SVGs */
}

/* ensure row layout on desktop/tablet (in case a mobile rule is sticking) */
@media (min-width: 769px) {
  #how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    flex-direction: row;  /* safeguard */
  }
}
/* Standardize all How It Works icons */
#how-it-works .icon {
  width: 80px;     /* or match your SVG size (5em ≈ 80px) */
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make SVGs scale to the wrapper */
#how-it-works .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Make the rocket PNG behave exactly like the SVGs */
#how-it-works .icon img.rocket-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps proportions */
  display: block;
}

/* === HOW IT WORKS: force all 5 icons to same size/alignment === */
#how-it-works .icon {
  width: 64px;           /* choose 64px (nice on mobile). Use 80px if you prefer larger */
  height: 64px;
  margin: 0 auto 15px;   /* centers above the headline */
  display: flex;
  align-items: center;
  justify-content: center;
}
#how-it-works .icon svg,
#how-it-works .icon img.rocket-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;   /* keeps PNG proportions */
}

/* === MOBILE: reduce the big gap under the hero button & before next sections === */
@media (max-width: 768px) {
  .hero { padding-bottom: 24px; }  /* was visually too tall */

  .what-included, .how-it-works, .packages {
    margin-top: 24px;    /* was 60px */
    padding-top: 24px;   /* was 60px (still keeps the blush divider) */
  }
}

/* MOBILE NAV — final override */
@media (max-width: 768px) {
  .site-header { position: sticky; top: 0; z-index: 1000; }
  .header-container { position: relative; }

  /* show the hamburger and place it visibly */
  .menu-toggle {
    display: flex;                        /* ensure visible */
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 22px; padding: 0;
    background: transparent; border: 0; cursor: pointer;
    z-index: 1002;                        /* above the dropdown */
  }
  .menu-toggle .bar { width: 26px; height: 3px; background: #b83e46; border-radius: 2px; margin: 3px 0; }

  /* hide menu by default on mobile */
  .main-nav {
    display: none;                        /* default hidden */
    position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: #fff8f5;
    border: 1px solid #f0d8d3;
    border-radius: 10px;
    padding: 16px;
    z-index: 1001;                        /* below the button, above page */
  }
  .main-nav.open { display: block; }      /* toggled state */

  .main-nav ul {
    display: flex; flex-direction: column; gap: 14px;
    margin: 0; padding: 0;
  }
  .main-nav a {
    display: block; padding: 10px 6px;
    color: #333; text-decoration: none;
  }
  .main-nav a:hover { color: #b83e46; }
}

@media (max-width: 768px) {
  .header-container { position: relative; }
  .menu-toggle { display:flex; position:absolute; left:12px; top:50%; transform:translateY(-50%); z-index:1002; }
  .main-nav { display:none; position:absolute; left:0; right:0; top:calc(100% + 6px); background:#fff8f5; border:1px solid #f0d8d3; border-radius:10px; padding:16px; z-index:1001; }
  .main-nav.open { display:block; }
}
/* === MOBILE NAV: single source of truth (final override) === */
@media (max-width: 768px) {
  .site-header { position: sticky; top: 0; z-index: 1000; }
  .header-container { position: relative; }

  /* show hamburger, keep it above the dropdown */
  .menu-toggle {
    display: flex !important;
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 22px; padding: 0;
    background: transparent; border: 0; cursor: pointer;
    z-index: 1002;
  }
  .menu-toggle .bar {
    width: 26px; height: 3px; background: #b83e46; border-radius: 2px; margin: 3px 0;
  }

  /* hide nav by default on mobile */
  .main-nav {
    display: none !important;     /* default hidden; overridden by .open */
    position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: #fff8f5;
    border: 1px solid #f0d8d3;
    border-radius: 10px;
    padding: 16px;
    z-index: 1001;
  }
  .main-nav.open {
    display: block !important;    /* ensure it wins over earlier rules */
  }

  .main-nav ul {
    display: flex; flex-direction: column; gap: 14px;
    margin: 0; padding: 0;
  }
  .main-nav a { display: block; padding: 10px 6px; color: #333; text-decoration: none; }
  .main-nav a:hover { color: #b83e46; }

  /* prevent logo from overlapping hamburger */
  .site-logo { max-height: 40px; margin-left: 44px; }
}

/* === HAMBURGER VISIBILITY FIX (final override) === */
@media (max-width: 768px) {
  .header-container { position: relative; }

  .menu-toggle {
    display: flex !important;
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 24px;             /* a touch larger */
    padding: 0; background: transparent; border: 0; cursor: pointer;
    z-index: 1002;
  }

  /* Make the bars actually render */
  .menu-toggle .bar {
    display: block !important;             /* <-- critical */
    width: 28px !important;
    height: 3px !important;
    margin: 4px 0 !important;
    background: #b83e46 !important;        /* brand color; contrasts on #fff8f5 */
    border-radius: 2px !important;
    opacity: 1 !important;
  }

 /*Optional debug (turn on if still not visible) 
  .menu-toggle { background: rgba(0,0,0,0.06); }
  .menu-toggle { outline: 1px dashed hotpink; }
  */
}

/* === HAMBURGER: draw bars on the button background (no spans needed) === */
@media (max-width: 768px) {
  .header-container { position: relative; }

  .menu-toggle {
    display: block !important;
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 28px; padding: 0;
    background: 
      linear-gradient(#b83e46, #b83e46) left 4px top 5px/28px 3px no-repeat,
      linear-gradient(#b83e46, #b83e46) left 4px center/28px 3px no-repeat,
      linear-gradient(#b83e46, #b83e46) left 4px bottom 5px/28px 3px no-repeat;
    border: 0;
    cursor: pointer;
    z-index: 1002;
    border-radius: 6px;
  }

  /* Don’t rely on the spans anymore */
  .menu-toggle .bar { display: none !important; }

  /* Dropdown panel */
  .main-nav {
    display: none !important;               /* hidden until toggled */
    position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: #fff8f5;
    border: 1px solid #f0d8d3;
    border-radius: 10px;
    padding: 16px;
    z-index: 1001;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .main-nav.open { display: block !important; }

  .main-nav ul {
    display: flex; flex-direction: column; gap: 14px;
    margin: 0; padding: 0;
  }
  .main-nav a { display: block; padding: 10px 6px; color: #333; text-decoration: none; }
  .main-nav a:hover { color: #b83e46; }

  /* keep logo from overlapping the button */
  .site-logo { max-height: 40px; margin-left: 44px; }
}


.package-card .package-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: #5a4b45;        /* soft, elegant accent – change if needed */
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.package-card.featured .price {
  font-weight: 700;
}

.package-card.featured .package-tagline {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

/* === WEDDING FUNNEL HEADER: stronger on scroll === */

/* Desktop / default */
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);  /* more solid white */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);   /* stronger shadow */
  backdrop-filter: blur(10px);                  /* subtle glass effect */
  padding: 14px 40px;                           /* slightly tighter than 20px */
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

/* Mobile: keep padding comfortable and shadow a bit softer */
@media (max-width: 768px) {
  .site-header.scrolled {
    padding: 12px 16px;                         /* matches your mobile header padding */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
}

.seo-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  font-size: 1rem;
  color: #555;
}

/* Featured Love Story Image Fix */
.featured-love-story-image {
  display: flex;
  justify-content: center;
}

.featured-love-story-image img {
  width: 100%;
  max-width: 480px; /* adjust if needed */
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.featured-love-story {
  padding: 70px 20px;
}

.featured-love-story-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.featured-love-story-text {
  max-width: 560px;
}

.featured-love-story-image {
  display: flex;
  justify-content: center;
}

.featured-love-story-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .featured-love-story-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured-love-story-text {
    max-width: 100%;
  }

  .featured-love-story-image img {
    max-width: 380px;
  }
}

.featured-love-story {
  margin-top: 20px;
}

.featured-love-story-content {
  align-items: center;
}

.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 60px auto;
}