/* ==========================================================
   FOUND BHUTAN — festivals-in-bhutan.css
   Festival pages redesign.
   Loads after tokens.css + main.css + footer.css
   All colours via CSS custom properties from tokens.css
   ========================================================== */

/* ── HERO ─────────────────────────────────────────────────── */
.fb-fest-hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.fb-fest-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: fb-fest-zoom 12s ease-out forwards;
}

@keyframes fb-fest-zoom {
  to { transform: scale(1); }
}

.fb-fest-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 20, 31, 0.95) 0%,
    rgba(14, 45, 69, 0.65) 45%,
    rgba(14, 45, 69, 0.15) 100%
  );
}

/* Decorative gold grid overlay */
.fb-fest-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 194, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 26, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.fb-fest-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5% 72px;
  max-width: 900px;
}

.fb-fest-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fb-fest-fadein 0.7s 0.3s ease forwards;
}

.fb-fest-hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.fb-fest-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fb-fest-fadein 0.8s 0.5s ease forwards;
}

.fb-fest-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.fb-fest-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fb-fest-fadein 0.7s 0.8s ease forwards;
}

.fb-fest-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 194, 26, 0.12);
  border: 1px solid rgba(255, 194, 26, 0.30);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
}

.fb-fest-hero__pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

@keyframes fb-fest-fadein {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.fb-fest-breadcrumb {
  background: var(--navy);
  padding: 14px 5%;
  border-bottom: 1px solid rgba(255, 194, 26, 0.12);
}

.fb-fest-breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fb-fest-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.fb-fest-breadcrumb a:hover { color: var(--gold); }

.fb-fest-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
}

.fb-fest-breadcrumb__current {
  color: var(--gold);
}

/* ── INTRO BAND ───────────────────────────────────────────── */
.fb-fest-intro {
  background: var(--off-white);
  padding: 80px 5% 72px;
  position: relative;
  overflow: hidden;
}

.fb-fest-intro::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.fb-fest-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.fb-fest-intro__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deeper);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fb-fest-intro__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.fb-fest-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.fb-fest-intro p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.fb-fest-intro p:last-child { margin-bottom: 0; }

/* Intro right — info cards */
.fb-fest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fb-fest-info-card {
  background: #fff;
  border: 1px solid rgba(14, 45, 69, 0.08);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.fb-fest-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 45, 69, 0.1);
}

.fb-fest-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.fb-fest-info-card__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.fb-fest-info-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-deeper);
  fill: none;
  stroke-width: 2;
}

.fb-fest-info-card__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.fb-fest-info-card__value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ── HIGHLIGHTS STRIP ─────────────────────────────────────── */
.fb-fest-highlights {
  background: var(--navy);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.fb-fest-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,194,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,194,26,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.fb-fest-highlights__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.fb-fest-highlights__header {
  text-align: center;
  margin-bottom: 52px;
}

.fb-fest-highlights__eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fb-fest-highlights__eyebrow::before,
.fb-fest-highlights__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.fb-fest-highlights h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: center;
}

.fb-fest-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fb-fest-hl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 194, 26, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.fb-fest-hl-card:hover {
  background: rgba(255, 194, 26, 0.06);
  border-color: rgba(255, 194, 26, 0.35);
}

.fb-fest-hl-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 194, 26, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.fb-fest-hl-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.fb-fest-hl-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── CONTENT + IMAGE SECTIONS ──────────────────────────────── */
.fb-fest-body {
  background: #fff;
  padding: 80px 5%;
}

.fb-fest-body__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Two-column: text left, image right */
.fb-fest-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(14, 45, 69, 0.07);
}

.fb-fest-split:last-child { border-bottom: none; }

.fb-fest-split--reverse { direction: rtl; }
.fb-fest-split--reverse > * { direction: ltr; }

.fb-fest-split__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.fb-fest-split__text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 28px 0 8px;
}

.fb-fest-split__text h3:first-of-type { margin-top: 0; }

.fb-fest-split__text p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0 0 14px;
}

.fb-fest-split__text p:last-child { margin-bottom: 0; }

.fb-fest-split__text ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
}

.fb-fest-split__text ul li {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-mid);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(14, 45, 69, 0.06);
}

.fb-fest-split__text ul li:last-child { border-bottom: none; }

.fb-fest-split__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.fb-fest-split__text ul li strong {
  color: var(--navy);
  font-weight: 600;
}

.fb-fest-split__image {
  position: relative;
}

.fb-fest-split__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Decorative gold accent on image */
.fb-fest-split__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  opacity: 0.3;
  pointer-events: none;
}

/* ── FULL-WIDTH PROSE SECTIONS ─────────────────────────────── */
.fb-fest-prose {
  background: var(--off-white);
  padding: 72px 5%;
}

.fb-fest-prose__inner {
  max-width: 800px;
  margin: 0 auto;
}

.fb-fest-prose__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deeper);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.fb-fest-prose__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.fb-fest-prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.fb-fest-prose p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.fb-fest-prose p:last-child { margin-bottom: 0; }

.fb-fest-prose ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
}

.fb-fest-prose ul li {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-mid);
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(14, 45, 69, 0.07);
}

.fb-fest-prose ul li:last-child { border-bottom: none; }

.fb-fest-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.fb-fest-prose ul li strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── DATES CALLOUT BAND ───────────────────────────────────── */
.fb-fest-dates {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 64px 5%;
  position: relative;
  overflow: hidden;
}

.fb-fest-dates::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,194,26,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.fb-fest-dates__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.fb-fest-dates__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.fb-fest-dates__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.fb-fest-dates h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-align: center;
}

.fb-fest-dates p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
}

.fb-fest-dates__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  transition: background 0.2s, transform 0.2s;
}

.fb-fest-dates__cta:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
}

.fb-fest-dates__cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ── WHY BOOK SECTION ─────────────────────────────────────── */
.fb-fest-why {
  background: #fff;
  padding: 80px 5%;
}

.fb-fest-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.fb-fest-why__header {
  margin-bottom: 48px;
}

.fb-fest-why__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.fb-fest-why__header p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-soft);
  margin: 0;
}

.fb-fest-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fb-fest-why-card {
  border: 1px solid rgba(14, 45, 69, 0.1);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.fb-fest-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.fb-fest-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 45, 69, 0.1);
}

.fb-fest-why-card:hover::before { opacity: 1; }

.fb-fest-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.fb-fest-why-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .fb-fest-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .fb-fest-highlights__grid { grid-template-columns: 1fr 1fr; }
  .fb-fest-split { grid-template-columns: 1fr; gap: 32px; }
  .fb-fest-split--reverse { direction: ltr; }
  .fb-fest-split__image img { height: 300px; }
  .fb-fest-split__image::after { display: none; }
  .fb-fest-why__grid { grid-template-columns: 1fr 1fr; }
  .fb-fest-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .fb-fest-hero { height: 75vh; }
  .fb-fest-hero__content { padding: 0 5% 48px; }
  .fb-fest-highlights__grid { grid-template-columns: 1fr; }
  .fb-fest-why__grid { grid-template-columns: 1fr; }
  .fb-fest-info-grid { grid-template-columns: 1fr 1fr; }
  .fb-fest-intro { padding: 52px 5% 48px; }
  .fb-fest-body { padding: 52px 5%; }
  .fb-fest-prose { padding: 52px 5%; }
  .fb-fest-split__image img { height: 240px; }
}
