/* ============================================================
   FESTIVALS HUB — festivals-in-bhutan/index.php
   Found Bhutan  |  festivals-hub.css
   All variables from tokens.css :root
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.fh-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.fh-hero {
  background: var(--navy) !important;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.fh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,194,26,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 50%, rgba(255,194,26,.04) 0%, transparent 70%);
  pointer-events: none;
}

.fh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.fh-hero__inner > div:first-child {
  text-align: center;
}


.fh-hero__eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.fh-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.fh-hero__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}

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

.fh-hero__sub {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 36px;
}

.fh-hero__stats {
  display: flex;
  gap: 36px;
  justify-content: center;
}

.fh-hero__stat { text-align: center; }

.fh-hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.fh-hero__stat-label {
  display: block;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
}

.fh-hero__badge {
  background: rgba(255,194,26,.1);
  border: 1px solid rgba(255,194,26,.22);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  flex-shrink: 0;
}

.fh-hero__badge-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.fh-hero__badge-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1.5;
}

/* ── Promo strip ─────────────────────────────────────────────── */
.fh-strip {
  background: var(--gold);
  padding: 18px 0;
}

.fh-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fh-strip__text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
}

.fh-strip__link {
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

.fh-strip__link:hover {
  background: #07192a;
  color: var(--gold);
}

/* ── Main grid ───────────────────────────────────────────────── */
.fh-main {
  background: var(--light-bg);
  padding: 64px 0 80px;
}

.fh-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.fh-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.fh-section-count {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Festival cards ──────────────────────────────────────────── */
.fh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.fh-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(14,45,69,.1);
  border-radius: var(--radius-md);
  padding: 20px 22px 18px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s, transform .18s var(--ease);
  position: relative;
  overflow: hidden;
}

.fh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.fh-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--navy);
}

.fh-card:hover::before {
  transform: scaleX(1);
}

.fh-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.fh-card__month {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: #7a5200;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.fh-card__loc {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.fh-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.fh-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  color: #7a5200;
  font-size: .85rem;
  margin-top: 14px;
  align-self: flex-end;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.fh-card:hover .fh-card__arrow {
  background: var(--gold);
  transform: translateX(3px);
}

/* ── About section ───────────────────────────────────────────── */
.fh-about {
  background: var(--navy);
  padding: 72px 0;
}

.fh-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.fh-about__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.fh-about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 20px;
}

.fh-about__title em {
  font-style: italic;
  color: var(--gold);
}

.fh-about__body {
  font-size: .97rem;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
  margin: 0 0 16px;
}

.fh-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fh-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.fh-fact__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.fh-fact__title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.fh-fact__text {
  font-size: .83rem;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.fh-cta {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.fh-cta__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 16px;
}

.fh-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
}

.fh-cta__sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.fh-cta__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: background .2s, transform .18s var(--ease);
  box-shadow: 0 4px 20px rgba(255,194,26,.3);
}

.fh-cta__btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  color: var(--navy);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .fh-about__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .fh-hero__inner { grid-template-columns: 1fr; }
  .fh-hero__badge { display: none; }
  .fh-hero__stats { gap: 24px; }
  .fh-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .fh-grid { grid-template-columns: 1fr; }
  .fh-hero { padding: 52px 0 48px; }
  .fh-strip__inner { flex-direction: column; align-items: flex-start; }
}

/* ── Explicit centering — overrides Bootstrap heading resets ─── */
.fh-cta__eyebrow,
.fh-cta__title,
.fh-cta__sub,
.fh-hero__title,
.fh-hero__sub,
.fh-hero__eyebrow,
.fh-section-title { text-align: center !important; }

.fh-cta { text-align: center !important; }
.fh-hero__inner > div:first-child { text-align: center !important; }
