/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(30,45,138,.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(201,160,64,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 70%, rgba(201,160,64,.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}

.hero-pattern {
  position: absolute; inset: 0; opacity: .025;
  background-image:
    repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px);
}

/* Floating diamonds */
.hero-diamonds { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.diamond {
  position: absolute; width: 9px; height: 9px;
  background: var(--gold); opacity: .1;
  transform: rotate(45deg);
  animation: floatDiamond 8s ease-in-out infinite;
}
@keyframes floatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(-18px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 940px; padding: 130px 24px 80px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 34px; height: 1px; background: var(--gold);
}

.hero-logo {
  max-width: 260px; margin: 0 auto 32px;
  filter: drop-shadow(0 8px 30px rgba(201,160,64,.4));
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(14px, 2.5vw, 20px);
  color: var(--gold-light); letter-spacing: 0.15em;
  margin-bottom: 12px;
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 86px);
  font-weight: 800; line-height: 0.95;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: var(--gold-glow), 0 4px 40px rgba(0,0,0,.8);
  margin-bottom: 16px;
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.8vw, 26px);
  font-weight: 400; color: var(--ivory);
  letter-spacing: 0.04em; margin-bottom: 10px; line-height: 1.4;
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.85s both;
}

.hero-sub {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 44px;
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 1s both;
}

.hero-actions {
  display: flex; gap: 18px;
  justify-content: center; flex-wrap: wrap;
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 1.1s both;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.4em; color: var(--muted); text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold-dark), transparent);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-logo { max-width: 200px; }
}
