/* sections.css — hero, value cards, destinations, about, testimonials, quote form */
/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:radial-gradient(ellipse 90% 60% at 50% -10%, #3a2364 0%, var(--deep-magic) 55%, #150c26 100%);
  color:var(--white);
  padding:170px 0 0;
  overflow:hidden;
}
.stars{position:absolute; inset:0; z-index:0;}
.star{
  position:absolute;
  background:var(--white);
  border-radius:50%;
  opacity:.8;
  animation:twinkle 3.2s ease-in-out infinite;
}
/* Opacity-only: 120 of these run at once, and animating transform:scale alongside opacity
   promotes every one to its own compositor layer for no visible gain at this size. */
@keyframes twinkle{
  0%,100%{opacity:.25;}
  50%{opacity:1;}
}
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:760px;
  margin:0 auto;
  padding-bottom:60px;
}
.eyebrow{
  font-family:'Parisienne',cursive;
  font-size:1.6rem;
  color:var(--fairy-gold-soft);
  margin-bottom:2px;
}
.hero h1{
  font-size:clamp(2.4rem, 5.4vw, 4.1rem);
  line-height:1.08;
  margin-bottom:22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--fairy-gold);
}
.hero p.lead{
  font-size:1.08rem;
  color:rgba(255,255,255,.82);
  line-height:1.7;
  max-width:560px;
  margin:0 auto 34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:.94rem;
  cursor:pointer;
  border:none;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold{
  background:linear-gradient(135deg, var(--fairy-gold-soft), var(--fairy-gold));
  color:var(--deep-magic);
  box-shadow:0 10px 30px -8px rgba(232,185,74,.55);
}
.btn-gold:hover{transform:translateY(-2px); box-shadow:0 14px 34px -6px rgba(232,185,74,.65);}
.btn-ghost{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover{border-color:var(--white); background:rgba(255,255,255,.06);}
.hero-ctas{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

.badges{
  position:relative; z-index:2;
  display:flex; justify-content:center; gap:34px; flex-wrap:wrap;
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:44px;
}
.badge{
  display:flex; align-items:center; gap:8px;
  font-size:.76rem; letter-spacing:.05em; text-transform:uppercase;
  color:rgba(255,255,255,.6); font-weight:500;
}
.badge svg{flex-shrink:0;}

/* 104% wide with a matching negative margin, not 100%: the parallax layer shifts this up
   to ~14px horizontally, and at exactly 100% wide that exposes the hero background at the
   trailing edge (invisible today only because both are the same near-black purple). */
.skyline{
  position:relative; z-index:1;
  width:104%; margin-left:-2%;
  display:block; margin-top:-1px;
}

/* Sits absolutely over the skyline's bottom edge rather than in flow, so it reads as a
   closer centrepiece rather than another slice of the horizon. DOM order (after .skyline)
   settles the paint order at equal z-index. Centered via left/right/margin, not a
   translateX(-50%) transform — GSAP's entrance tween and the parallax both write this
   element's transform, and either would bake the percentage into a fixed pixel offset the
   first time it runs, letting the castle drift off-center on a later resize. */
.castle{
  position:absolute; z-index:1;
  left:0; right:0; bottom:0;
  margin:0 auto;
  width:min(58%, 440px);
  pointer-events:none;
}

/* Sits behind the castle at the same centering trick; GSAP owns its opacity. */
.castle-glow{
  position:absolute; z-index:1;
  left:0; right:0; bottom:0;
  margin:0 auto;
  width:min(70%, 560px);
  height:280px;
  background:radial-gradient(ellipse 60% 65% at 50% 85%, rgba(232,185,74,.4), transparent 70%);
  pointer-events:none;
}


/* ---------- VALUE CARDS ---------- */
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.value-card{
  background:var(--white);
  border-radius:20px;
  padding:38px 30px;
  box-shadow:0 12px 36px -18px rgba(75,46,131,.28);
  border:1px solid #EFE6D8;
  transition:transform .25s ease, box-shadow .25s ease;
}
.value-card:hover{transform:translateY(-6px); box-shadow:0 20px 44px -16px rgba(75,46,131,.34);}
.value-icon{
  width:52px; height:52px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--royal-violet), var(--amethyst));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  color:var(--fairy-gold-soft);
}
.value-card h3{font-size:1.15rem; color:var(--deep-magic); margin-bottom:10px;}
.value-card p{font-size:.92rem; color:var(--ink-plum-soft); line-height:1.65;}

/* ---------- DESTINATIONS ---------- */
.destinations{background:var(--deep-magic); color:var(--white); position:relative; overflow:hidden;}
.destinations .section-head h2{color:var(--white);}
.destinations .section-head p{color:rgba(255,255,255,.65);}
.destinations .section-head .tag{color:var(--fairy-gold-soft);}
.dest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.dest-card{
  display:block;
  position:relative;
  border-radius:18px;
  padding:30px 24px 26px;
  background:linear-gradient(160deg, rgba(124,79,191,.35), rgba(31,18,53,.2));
  border:1px solid rgba(232,185,74,.22);
  transition:border-color .25s ease, transform .25s ease;
  color:inherit;
  text-decoration:none;
}
.dest-card:hover{border-color:var(--fairy-gold); transform:translateY(-4px);}
.dest-card .num{
  font-family:'Fraunces',serif; font-style:italic;
  color:var(--fairy-gold); font-size:.82rem; opacity:.8; margin-bottom:14px; display:block;
}
.dest-card h3{font-size:1.15rem; margin-bottom:8px;}
.dest-card p{font-size:.85rem; color:rgba(255,255,255,.62); line-height:1.6;}

/* ---------- ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-photo{
  position:relative;
  aspect-ratio:4/5;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(150deg, var(--royal-violet), var(--amethyst) 60%, var(--fairy-gold) 150%);
}
.about-photo img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.about-photo::before{
  content:'';
  position:absolute; inset:14px;
  border:1.5px solid rgba(255,255,255,.5);
  border-radius:16px;
  pointer-events:none;
  z-index:2;
}
.about-copy .tag{
  font-family:'Parisienne',cursive; font-size:1.5rem; color:var(--amethyst); display:block;
}
.about-copy h2{font-size:clamp(1.8rem,3.2vw,2.4rem); color:var(--deep-magic); margin:2px 0 18px;}
.about-copy p{color:var(--ink-plum-soft); line-height:1.8; margin-bottom:16px; font-size:.98rem;}
.about-contact{
  display:flex; gap:22px; flex-wrap:wrap; margin-top:26px;
}
.about-contact a{
  display:flex; align-items:center; gap:8px;
  font-weight:600; font-size:.9rem; color:var(--royal-violet);
  padding:10px 18px; border:1.5px solid var(--royal-violet); border-radius:999px;
  transition:background .2s ease, color .2s ease;
}
.about-contact a:hover{background:var(--royal-violet); color:var(--white);}

/* ---------- FAQ ---------- */
.faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px;}
.faq-item{
  background:var(--white);
  border-radius:16px;
  border:1px solid #EFE6D8;
  box-shadow:0 8px 24px -18px rgba(75,46,131,.22);
  overflow:hidden;
}
.faq-item summary{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px;
  cursor:pointer;
  font-weight:600;
  color:var(--deep-magic);
  font-size:1rem;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  flex-shrink:0;
  font-family:'Fraunces',serif;
  font-size:1.3rem;
  color:var(--amethyst);
  transition:transform .25s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{padding:0 24px 22px; margin:0; color:var(--ink-plum-soft); line-height:1.7; font-size:.94rem;}

/* ---------- DISNEY TIPS ----------
   Same <details>/<summary> mechanism as the FAQ (accessible, keyboard-friendly, works with
   no JS), styled as a card grid instead of a stacked list so it reads as a headline feed
   rather than a second FAQ. Only the headline is visible until expanded — "click a
   headline, read the article" is the whole interaction. */
.news-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
  /* Without this, expanding one card stretches its whole grid row's height onto every
     other card in that row too — each card should size to its own content only. */
  align-items:start;
}
.news-item{
  background:var(--white);
  border-radius:16px;
  border:1px solid #EFE6D8;
  box-shadow:0 8px 24px -18px rgba(75,46,131,.22);
  overflow:hidden;
}
.news-item summary{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  padding:24px 26px;
  cursor:pointer;
  list-style:none;
}
.news-item summary::-webkit-details-marker{display:none;}
.news-cat{
  display:inline-block;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--amethyst);
  background:color-mix(in srgb, var(--amethyst) 12%, transparent);
  padding:4px 11px;
  border-radius:999px;
}
.news-title{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:1.08rem;
  color:var(--deep-magic);
  line-height:1.35;
}
.news-toggle{
  position:absolute;
  top:24px; right:26px;
  width:22px; height:22px;
  flex-shrink:0;
}
.news-toggle::before, .news-toggle::after{
  content:'';
  position:absolute;
  background:var(--fairy-gold);
  border-radius:2px;
  transition:transform .25s ease;
}
.news-toggle::before{top:10px; left:2px; width:18px; height:2px;}
.news-toggle::after{top:2px; left:10px; width:2px; height:18px; transition:opacity .2s ease;}
.news-item[open] .news-toggle::after{opacity:0;}
.news-item summary{position:relative;}
.news-body{padding:0 26px 26px;}
.news-body p{color:var(--ink-plum-soft); line-height:1.75; font-size:.94rem;}
.news-read-more{
  display:inline-block; margin-top:4px; font-size:.9rem; font-weight:600;
  color:var(--royal-violet); text-decoration:underline; text-underline-offset:3px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{background:var(--parchment-2);}
.test-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.test-card{
  background:var(--white);
  border-radius:18px;
  padding:32px 28px;
  box-shadow:0 10px 30px -18px rgba(75,46,131,.25);
  position:relative;
}
.test-card .quote-mark{
  font-family:'Fraunces',serif; font-size:2.6rem; color:var(--fairy-gold); line-height:1; margin-bottom:8px; display:block;
}
.test-card p{font-size:.92rem; color:var(--ink-plum-soft); line-height:1.7; margin-bottom:18px; font-style:italic;}
.test-name{font-weight:600; font-size:.88rem; color:var(--deep-magic);}
.test-trip{font-size:.78rem; color:var(--amethyst);}

/* ---------- QUOTE FORM ---------- */
.quote-section{
  background:radial-gradient(ellipse 80% 70% at 50% 0%, #3a2364 0%, var(--deep-magic) 60%, #150c26 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.quote-wrap{
  max-width:720px; margin:0 auto;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(232,185,74,.28);
  border-radius:26px;
  padding:52px 46px;
  backdrop-filter:blur(6px);
  position:relative; z-index:2;
}
.quote-section .section-head p{color:rgba(255,255,255,.68);}
.quote-section .section-head .tag{color:var(--fairy-gold-soft);}
.quote-section .section-head h2{color:var(--white);}
form.quote-form{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
form.quote-form .full{grid-column:1/-1;}
.field label{
  display:block; font-size:.78rem; letter-spacing:.03em; text-transform:uppercase;
  color:var(--fairy-gold-soft); margin-bottom:8px; font-weight:500;
}
.field input, .field select, .field textarea{
  width:100%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.2);
  border-radius:12px;
  padding:13px 15px;
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-size:.92rem;
  transition:border-color .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder{color:rgba(255,255,255,.35);}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--fairy-gold); background:rgba(255,255,255,.09);
}
.field select option{color:#111;}
.field textarea{resize:vertical; min-height:100px;}
.quote-submit{
  grid-column:1/-1;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-top:6px;
}
.quote-note{font-size:.78rem; color:rgba(255,255,255,.45); max-width:320px;}
.form-msg{
  grid-column:1/-1;
  font-size:.85rem;
  padding:12px 16px;
  border-radius:10px;
  display:none;
}
.form-msg.show{display:block;}
.form-msg.ok{background:rgba(232,185,74,.15); color:var(--fairy-gold-soft); border:1px solid rgba(232,185,74,.35);}
.form-msg.error{background:rgba(220,90,90,.15); color:#ffb7b7; border:1px solid rgba(220,90,90,.35);}
.form-msg.error a{color:var(--fairy-gold); text-decoration:underline; text-underline-offset:2px;}

.booking-link{
  text-align:center; margin-top:26px; font-size:.86rem; color:rgba(255,255,255,.55);
}
.booking-link a{color:var(--fairy-gold); font-weight:600; text-decoration:underline; text-underline-offset:3px;}

/* ---------- DESTINATION PAGE ----------
   Reuses the hero's dark gradient and gold accent language at a fraction of the height —
   no castle scene, no fireworks, since these pages have a job to do (convert on one
   destination) rather than a first impression to make. */
.hero-lite{
  position:relative;
  background:radial-gradient(ellipse 90% 70% at 50% -10%, #3a2364 0%, var(--deep-magic) 60%, #150c26 100%);
  color:var(--white);
  padding:150px 0 70px;
  text-align:center;
}
.breadcrumb{
  display:flex; justify-content:center; gap:8px; flex-wrap:wrap;
  font-size:.8rem; color:rgba(255,255,255,.55); margin-bottom:18px;
}
.breadcrumb a{color:var(--fairy-gold-soft);}
.breadcrumb a:hover{text-decoration:underline;}
.hero-lite .num{
  font-family:'Fraunces',serif; font-style:italic; color:var(--fairy-gold);
  font-size:.9rem; opacity:.85; display:block; margin-bottom:10px;
}
.hero-lite h1{font-size:clamp(2rem, 4.6vw, 3.2rem); line-height:1.12; margin-bottom:16px;}
.hero-lite .promise{
  font-size:1.05rem; color:rgba(255,255,255,.8); max-width:600px; margin:0 auto 30px; line-height:1.65;
}

.dest-detail-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:44px;
}
.dest-detail-grid h2{font-size:1.3rem; color:var(--deep-magic); margin-bottom:16px;}
.handle-list{list-style:none;}
.handle-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 0; border-bottom:1px solid #EFE6D8;
  font-size:.94rem; color:var(--ink-plum-soft); line-height:1.6;
}
.handle-list li:last-child{border-bottom:none;}
.handle-list li::before{
  content:'✦'; color:var(--fairy-gold); flex-shrink:0; font-size:.85rem; margin-top:3px;
}
.who-list{list-style:none;}
.who-list li{
  padding:16px 20px; margin-bottom:12px;
  background:var(--white); border-radius:14px; border:1px solid #EFE6D8;
  font-size:.92rem; color:var(--ink-plum-soft); line-height:1.6;
}
.who-list li:last-child{margin-bottom:0;}

.dest-cta-banner{
  background:var(--deep-magic); color:var(--white); text-align:center;
  padding:56px 0;
}
.dest-cta-banner h2{color:var(--white); font-size:1.6rem; margin-bottom:14px;}
.dest-cta-banner p{color:rgba(255,255,255,.72); max-width:520px; margin:0 auto 26px;}

/* ---------- BLOG ----------
   .dest-card is reused here (blog index cards, related-destination links) rather than
   duplicated — the card has its own dark gradient background and hardcoded light text,
   so it reads correctly whether the section around it is light or dark. */
.blog-article{max-width:680px; margin:0 auto;}
.blog-article h2{font-size:1.3rem; color:var(--deep-magic); margin:36px 0 14px;}
.blog-article h2:first-child{margin-top:0;}
.blog-article p{font-size:.98rem; color:var(--ink-plum-soft); line-height:1.75; margin-bottom:16px;}
.blog-hub-link{max-width:680px; margin:0 auto; padding-top:8px;}
.blog-hub-link a{color:var(--royal-violet); font-weight:600; text-decoration:underline; text-underline-offset:3px;}

.blog-related{max-width:680px; margin:48px auto 0;}
.blog-related h2{font-size:1.3rem; color:var(--deep-magic); margin-bottom:18px;}
.blog-related-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px;}

.blog-index-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.blog-index-grid .dest-card .num{text-transform:uppercase; letter-spacing:.06em; font-style:normal;}

/* .dest-card's translucent gradient is tuned to blend with .destinations' dark section
   background — on these light sections it washes out to a pale card with illegible
   near-white text, so give it an opaque dark background here instead. */
.blog-index-grid .dest-card, .blog-related-grid .dest-card{
  background:linear-gradient(160deg, #4a2f7d, var(--deep-magic));
  color:var(--white);
}

