/*--------------------------------------------------------------
# 8th MAI Bagan Race 2026 - home page only
--------------------------------------------------------------*/
:root {
  --br-navy: #13306b;
  --br-blue: #1d4fa3;
  --br-orange: #f26a21;
  --br-gold: #f5b82e;
  --br-red: #ed1c24;
  --br-brown: #514c43;
  --br-ink: #1f2430;
  --br-muted: #6b6f7b;
  --br-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Hero ---------- */
#hero.hero-2026 {
  height: auto;
  min-height: 100vh;
  max-height: none;
}

.hero-2026 .hero-banner {
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
}

.hero-2026 .hero-banner::before { display: none; }

.hero-2026 .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(10, 22, 55, .35) 0%, rgba(10, 22, 55, .7) 75%),
    linear-gradient(180deg, rgba(10, 22, 55, .55) 0%, rgba(10, 22, 55, .25) 45%, rgba(10, 22, 55, .8) 100%);
}

.hero-2026 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-2026 .hero-logo {
  width: 220px;
  max-width: 55vw;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .35));
}

.hero-2026 .hero-eyebrow {
  margin: 18px 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--br-gold);
}

.hero-2026 .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.hero-2026 .hero-title span {
  background: linear-gradient(90deg, var(--br-gold), var(--br-orange), var(--br-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: br-shine 5s linear infinite;
}

.hero-2026 .hero-tagline {
  margin: 12px 0 22px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-style: italic;
  color: rgba(255, 255, 255, .9);
}

.hero-2026 .hero-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 600;
}

.hero-2026 .hero-date i { font-size: 18px; color: var(--br-gold); }

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 30px;
}

.countdown .cd-box {
  width: 92px;
  padding: 14px 6px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.countdown .cd-num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown .cd-num.tick { animation: br-tick .4s var(--br-ease); }

.countdown .cd-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

.countdown.is-done .cd-box { display: none; }
.countdown .cd-done {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

/* Buttons */
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.btn-hero {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  transition: transform .3s var(--br-ease), box-shadow .3s var(--br-ease), background .3s;
}

.btn-hero-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--br-orange), var(--br-red));
  box-shadow: 0 10px 25px rgba(242, 106, 33, .45);
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(242, 106, 33, .55);
}

.btn-hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .8);
}

.btn-hero-ghost:hover {
  color: var(--br-navy);
  background: #fff;
  transform: translateY(-3px);
}

.scroll-down {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 26px;
  color: rgba(255, 255, 255, .85);
  animation: br-bounce 2s infinite;
}

.scroll-down:hover { color: var(--br-gold); }

/* Hero entrance */
.anim-in {
  opacity: 0;
  animation: br-rise .9s var(--br-ease) forwards;
  animation-delay: var(--d, 0s);
}

/* ---------- Sections ---------- */
.home-2026 .h-section { padding: 90px 0; position: relative; }

.home-2026 .h-section-soft { background: linear-gradient(180deg, #fff 0%, #f6f3ee 55%, #fff 100%); }

.home-2026 .h-section-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--br-navy) 0%, #1c2f5e 45%, var(--br-brown) 100%);
  background-size: 200% 200%;
  animation: br-gradient 18s ease infinite;
}

.home-2026 .h-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.home-2026 .h-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--br-orange);
  margin-bottom: 8px;
}

.home-2026 .h-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  color: var(--br-ink);
  margin: 0 0 14px;
  padding-bottom: 16px;
  position: relative;
}

.home-2026 .h-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, var(--br-orange), var(--br-gold));
  transition: transform .8s var(--br-ease) .3s;
}

.home-2026 .h-title.is-visible h2::after { transform: translateX(-50%) scaleX(1); }

.home-2026 .h-title p { color: var(--br-muted); margin: 0; }

.home-2026 .h-title-light h2 { color: #fff; }
.home-2026 .h-title-light .h-eyebrow { color: var(--br-gold); }

/* Cards */
.home-2026 .h-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(19, 48, 107, .12);
  overflow: hidden;
  transition: transform .45s var(--br-ease), box-shadow .45s var(--br-ease);
}

.home-2026 .h-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(19, 48, 107, .2);
}

.home-2026 .h-media img {
  display: block;
  width: 100%;
  transition: transform 1.2s var(--br-ease);
}

.home-2026 .h-media:hover img { transform: scale(1.04); }

.home-2026 .medal-card { max-width: 980px; margin: 0 auto; }

.home-2026 .map-card { height: 100%; display: flex; align-items: center; }

/* Info cards */
.home-2026 .info-card {
  height: 100%;
  padding: 22px 22px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .35s var(--br-ease), background .35s, border-color .35s;
}

.home-2026 .info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(245, 184, 46, .6);
}

.home-2026 .info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--br-orange), var(--br-gold));
  box-shadow: 0 8px 20px rgba(242, 106, 33, .35);
  margin-bottom: 14px;
  transition: transform .5s var(--br-ease);
}

.home-2026 .info-card:hover i { transform: rotate(-8deg) scale(1.08); }

.home-2026 .info-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--br-gold);
  margin: 0 0 6px;
}

.home-2026 .info-card p { margin: 0; font-size: 16px; color: #fff; }

/* Kit cards */
.home-2026 .portfolio-details { padding-top: 90px; }

.home-2026 .kit-card { position: relative; padding: 18px 18px 8px; }

.home-2026 .kit-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--br-blue), var(--br-navy));
  box-shadow: 0 6px 16px rgba(19, 48, 107, .35);
}

.home-2026 .kit-badge-alt { background: linear-gradient(135deg, var(--br-orange), var(--br-red)); }

.home-2026 .portfolio-details-slider img { border-radius: 10px; }

.home-2026 .portfolio-details .swiper-pagination-bullet-active { background-color: var(--br-orange) !important; border-color: var(--br-orange) !important; }

/* ---------- Keyframes ---------- */
@keyframes br-rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes br-shine { to { background-position: 200% center; } }
@keyframes br-tick { 0% { transform: translateY(-6px); opacity: .3; } 100% { transform: none; opacity: 1; } }
@keyframes br-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }
@keyframes br-gradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Responsive ---------- */
@media (max-width: 575px) {
  .hero-2026 .hero-banner { padding: 100px 0 80px; }
  .countdown { gap: 8px; }
  .countdown .cd-box { width: 68px; padding: 10px 4px 8px; border-radius: 10px; }
  .countdown .cd-num { font-size: 24px; }
  .countdown .cd-label { font-size: 9px; letter-spacing: 1px; }
  .home-2026 .h-section { padding: 65px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-in { opacity: 1; transform: none; animation: none; transition: none; }
  .hero-2026 .hero-title span, .scroll-down, .home-2026 .h-section-dark { animation: none; }
}
