/* ==========================================================================
   Natyarpana — Home Page Hero (premium Bharatanatyam)
   ========================================================================== */

:root {
  --home-bg: #050505;
  --home-gold: #d4af37;
  --home-gold-dark: #b8860b;
  --home-champagne: #f5e7c1;
  --home-maroon: #6e0f1a;
  --home-text-soft: #d2c1a1;
  --home-nav-text: #f3e7c9;
  --home-header-h: 88px;
}

/* --------------------------------------------------------------------------
   Page shell (home only)
   -------------------------------------------------------------------------- */
.body-home {
  background-color: var(--home-bg);
  color: var(--home-champagne);
  overflow-x: hidden;
}

.body-home .preloader {
  background-color: var(--home-bg);
}

/* Home uses new header — suppress legacy header-1 positioning */
.body-home .header-1 {
  display: none !important;
}

.body-home .mouse-cursor {
  display: none;
}

/* --------------------------------------------------------------------------
   Premium header / navbar
   -------------------------------------------------------------------------- */
.site-header--home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  border: none;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
}

.site-header--home .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--home-header-h);
  padding: 14px clamp(20px, 4vw, 56px);
}

.site-header--home.is-scrolled,
.site-header--home.sticky {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.12);
}

.site-header--home .site-header__logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.site-header--home .mean__menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-header--home .main-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header--home .main-menu ul li {
  display: inline-block;
  margin: 0;
  position: relative;
}

.site-header--home .main-menu ul li a {
  display: inline-block;
  padding: 8px 2px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--home-nav-text) !important;
  text-decoration: none;
  position: relative;
  transition: color 0.35s ease;
}

.site-header--home .main-menu ul li a::before {
  display: none !important;
}

.site-header--home .main-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--home-gold), var(--home-gold-dark));
  transition: width 0.35s ease;
}

.site-header--home .main-menu ul li a:hover,
.site-header--home .main-menu ul li:hover > a,
.site-header--home .main-menu ul li.active > a {
  color: var(--home-gold) !important;
}

.site-header--home .main-menu ul li a:hover::after,
.site-header--home .main-menu ul li.active > a::after {
  width: 100%;
}

.site-header--home .site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header--home .site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-champagne);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, #6e0f1a 0%, #4a0a12 55%, #2d060c 100%);
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
}

.site-header--home .site-header__cta:hover {
  border-color: var(--home-gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
  color: var(--home-champagne);
}

.site-header--home .site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--home-nav-text);
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .site-header--home .mean__menu-wrapper {
    display: none;
  }

  .site-header--home .site-header__cta {
    display: none;
  }

  .site-header--home .site-header__toggle {
    display: inline-flex;
  }
}

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: var(--home-bg);
  margin: 0;
  padding: 0;
}

/* Background image layer */
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero/hero-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark overlay + vignette */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 80% 70% at 50% 45%,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

/* Subtle gold particles */
.home-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(212, 175, 55, 0.55), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 68%, rgba(245, 231, 193, 0.35), transparent),
    radial-gradient(1px 1px at 88% 72%, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 28% 82%, rgba(212, 175, 55, 0.35), transparent);
  background-size: 100% 100%;
  animation: home-hero-particles 18s ease-in-out infinite alternate;
}

@keyframes home-hero-particles {
  0% {
    opacity: 0.35;
    transform: translateY(0);
  }
  100% {
    opacity: 0.5;
    transform: translateY(-8px);
  }
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  padding: calc(var(--home-header-h) + 32px) clamp(20px, 4vw, 56px) 48px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
}

/* Left content */
.home-hero__content {
  max-width: 640px;
  padding-bottom: 0;
}

.home-hero__lotus {
  display: block;
  width: clamp(56px, 8vw, 88px);
  height: auto;
  margin: 0 auto 20px 0;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
  animation: home-hero-lotus-float 5s ease-in-out infinite;
}

@keyframes home-hero-lotus-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.home-hero__label {
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--home-text-soft);
  margin: 0 0 20px;
  opacity: 0;
  animation: home-hero-fade-up 0.9s ease forwards 0.15s;
}

.home-hero__title {
  font-family: "Cormorant Garamond", "Cinzel", serif;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--home-champagne);
  margin: 0 0 24px;
  opacity: 0;
  animation: home-hero-fade-up 1s ease forwards 0.3s;
}

.home-hero__title-accent {
  background: linear-gradient(135deg, #f5e7c1 0%, #d4af37 45%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.home-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--home-text-soft);
  max-width: 520px;
  margin: 0 0 36px;
  opacity: 0;
  animation: home-hero-fade-up 1s ease forwards 0.45s;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: home-hero-fade-up 1s ease forwards 0.6s;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition:
    box-shadow 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.home-hero__btn--primary {
  color: var(--home-champagne);
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, #6e0f1a 0%, #4a0a12 50%, #320810 100%);
}

.home-hero__btn--primary:hover {
  border-color: var(--home-gold);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  color: var(--home-champagne);
}

.home-hero__btn--secondary {
  color: var(--home-champagne);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.home-hero__btn--secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--home-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
  color: var(--home-champagne);
}

/* Right — dancer */
.home-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(78vh, 720px);
  height: 100%;
  opacity: 0;
  animation: home-hero-fade-up 1.1s ease forwards 0.5s;
}

.home-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(95%, 480px);
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.22) 0%,
    rgba(110, 15, 26, 0.12) 40%,
    transparent 72%
  );
  filter: blur(8px);
  animation: home-hero-glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes home-hero-glow-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.home-hero__dancer {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 115%;
  max-height: min(88vh, 900px);
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

@keyframes home-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .home-hero__content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .home-hero__lotus {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-hero__visual {
    min-height: min(60vh, 580px);
    order: 2;
  }

  .home-hero__content {
    order: 1;
  }

  .home-hero__dancer {
    max-width: 100%;
    max-height: min(62vh, 560px);
  }
}

@media (max-width: 575px) {
  .home-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .home-hero__btn {
    width: 100%;
  }

  .home-hero__inner {
    padding-bottom: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__lotus,
  .home-hero__particles,
  .home-hero__glow,
  .home-hero__label,
  .home-hero__title,
  .home-hero__desc,
  .home-hero__actions,
  .home-hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
