/* ==========================================
   HOME PAGE - home.css
   Theme: Saffron & Gold
   Enhanced: Hero bg-image support + Animations
   ========================================== */

/* ============================================
   HERO — Background Image Ready
   Admin panel se image lagane par auto-adapt
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden removed — image full dikhegi, cut nahi hogi */

  padding-top: 90px; /* navbar ke hisab se adjust */
}
/* Default gradient bg — image set hone par override hoga */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF3E8 0%, #FFE0C0 40%, #FFF8F0 100%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease;
}

/* Jab image set ho — default orange gradient completely hatao */
.hero-bg[style*="background-image"] {
  background-color: #000 !important;
}
.hero--has-img .hero-bg {
  background-image: none; /* sirf real image use hogi */
}
/* Radial glows — sirf tab jab image NA ho */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,101,10,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,101,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Jab image set ho — orange glows hatao */
.hero-bg[style*="background-image"]::before,
.hero-bg[style*="background-image"]::after,
.hero--has-img .hero-bg::before,
.hero--has-img .hero-bg::after {
  display: none;
}

/*
  Jab hero-bg mein backgroundImage set ho (admin panel se),
  hero-overlay automatically dark scrim bana deta hai
  taaki text readable rahe.
  home-firebase.js mein overlay.style.background set ho raha hai — theek hai.
*/
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Default: subtle pattern */
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8650A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  transition: background 0.4s ease;
  pointer-events: none;
}

/* Hero content — text highlight when bg image is active */
.hero-content {
  position: relative;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  animation: heroEntrance 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Text shadow auto-applies when overlay darkens (image mode) */
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin: 16px 0 20px;
  letter-spacing: 0.04em;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.hero-content h1 span { color: var(--saffron); font-style: italic; }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroEntrance 0.9s 0.18s cubic-bezier(0.22,1,0.36,1) both;
}

/* ===== HERO IMAGE MODE (PREMIUM - UNIVERSAL) ===== */

.hero-bg[style*="background-image"] ~ .hero-overlay,
.hero--has-img .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,    /* top — image bilkul clear */
    rgba(0,0,0,0.30) 45%,   /* middle — thoda dark */
    rgba(0,0,0,0.60) 100%   /* bottom — text ke peeche readable */
  ) !important;
}

/* ===== HEADING ===== */
.hero--has-img .hero-content h1 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.9),
    0 6px 20px rgba(0,0,0,0.7),
    0 12px 40px rgba(0,0,0,0.5);
}

/* highlight word */
.hero--has-img .hero-content h1 span {
  color: var(--saffron-light);
}

/* ===== SUBTITLE ===== */
.hero--has-img .hero-content p {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.6);
}

/* ===== BADGE ===== */
.hero--has-img .section-badge {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
}

/* ===== BUTTON IMPROVE ===== */
.hero .btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ===== SCROLL ICON ===== */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
/* ============================================
   FEATURES STRIP — Animated
   ============================================ */
.features-strip {
  background: var(--saffron);
  border-bottom: none;
  overflow: hidden;
}

/* ── MARQUEE OUTER — clips the scrolling track ── */
.marquee-outer {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── EACH ITEM ── */
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
}
.f-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  animation: iconFloat 2.4s ease-in-out infinite;
}
.feature-item:nth-child(1) .f-icon  { animation-delay: 0s;    }
.feature-item:nth-child(3) .f-icon  { animation-delay: 0.5s;  }
.feature-item:nth-child(5) .f-icon  { animation-delay: 1s;    }
.feature-item:nth-child(7) .f-icon  { animation-delay: 1.5s;  }
.feature-item:nth-child(9) .f-icon  { animation-delay: 0s;    }
.feature-item:nth-child(11) .f-icon { animation-delay: 0.5s;  }
.feature-item:nth-child(13) .f-icon { animation-delay: 1s;    }
.feature-item:nth-child(15) .f-icon { animation-delay: 1.5s;  }
@keyframes iconFloat {
  0%,100% { transform: translateY(0)   scale(1);    }
  50%      { transform: translateY(-5px) scale(1.12); }
}

.feature-item div  { display: flex; flex-direction: column; }
.feature-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.feature-item span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

/* ── SEPARATOR DOT ── */
.marquee-dot {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  padding: 0 8px;
  flex-shrink: 0;
  align-self: center;
}

/* ============================================
   COLLECTIONS GRID — Home Page
   Enhanced hover + entrance animations
   ============================================ */
#home-collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-col-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 2px solid rgba(232,101,10,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  /* Entrance */
  opacity: 0;
  transform: translateY(28px);
  animation: cardEntrance 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.home-col-card:nth-child(1) { animation-delay: 0.05s; }
.home-col-card:nth-child(2) { animation-delay: 0.12s; }
.home-col-card:nth-child(3) { animation-delay: 0.19s; }
.home-col-card:nth-child(4) { animation-delay: 0.26s; }
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.home-col-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 12px 36px rgba(232,101,10,0.18);
  transform: translateY(-5px);
}
.home-col-card:active { transform: scale(0.97); }

/* ── LIVE: Card Wave + Border Glow — hamesha chalta rahe ── */
@keyframes cardWaveLive {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes borderGlowLive {
  0%,100% {
    border-color: rgba(232,101,10,0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  50% {
    border-color: rgba(232,101,10,0.65);
    box-shadow: 0 6px 22px rgba(232,101,10,0.18);
  }
}

/* Dono animations ek saath — wave + border glow */
.home-col-card:nth-child(1) {
  animation:
    cardEntrance     0.55s cubic-bezier(0.22,1,0.36,1) 0.05s forwards,
    cardWaveLive     2.6s ease-in-out 0.8s infinite,
    borderGlowLive   2.6s ease-in-out 0.8s infinite;
}
.home-col-card:nth-child(2) {
  animation:
    cardEntrance     0.55s cubic-bezier(0.22,1,0.36,1) 0.12s forwards,
    cardWaveLive     2.6s ease-in-out 1.45s infinite,
    borderGlowLive   2.6s ease-in-out 1.45s infinite;
}
.home-col-card:nth-child(3) {
  animation:
    cardEntrance     0.55s cubic-bezier(0.22,1,0.36,1) 0.19s forwards,
    cardWaveLive     2.6s ease-in-out 2.1s infinite,
    borderGlowLive   2.6s ease-in-out 2.1s infinite;
}
.home-col-card:nth-child(4) {
  animation:
    cardEntrance     0.55s cubic-bezier(0.22,1,0.36,1) 0.26s forwards,
    cardWaveLive     2.6s ease-in-out 2.75s infinite,
    borderGlowLive   2.6s ease-in-out 2.75s infinite;
}

/* Hover pe wave band — stable rahe jab user dekh raha ho */
.home-col-card:hover {
  animation: none !important;
  border-color: var(--saffron);
  box-shadow: 0 12px 36px rgba(232,101,10,0.22);
  transform: translateY(-5px);
}

/* Image wrapper — zoom on hover */
.home-col-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #FFF0E0;
}
.home-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.home-col-card:hover .home-col-img img { transform: scale(1.07); }

/* Sheen sweep on hover */
.home-col-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.home-col-card:hover .home-col-img::after { transform: translateX(100%); }

.home-col-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.25;
  background: linear-gradient(135deg, #FFF0E0, #FFE0C0);
}

.home-col-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.home-col-tag.rajputi { background: rgba(192,57,43,0.88); color: #fff; }
.home-col-tag.desi    { background: rgba(142,68,173,0.88); color: #fff; }

.home-col-body {
  padding: 14px 16px 18px;
  background: var(--white);
  border-top: 1px solid rgba(232,101,10,0.08);
  transition: background 0.3s ease;
}
.home-col-card:hover .home-col-body { background: var(--saffron-pale); }

.home-col-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.home-col-card:hover .home-col-name { color: var(--saffron-dark); }
.home-col-name-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* Old classes — compatibility */
.col-card { overflow: hidden; }
.col-img-wrap { position:relative; overflow:hidden; aspect-ratio:4/3; background:#FFF0E0; }
.col-img-wrap img { width:100%; height:100%; object-fit:cover; }
.col-tag { position:absolute; top:12px; left:12px; background:var(--saffron); color:var(--white); font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; padding:4px 10px; border-radius:4px; }
.col-card-body { padding:20px; }
.col-card-body h3 { font-family:var(--font-display); font-size:1.2rem; font-weight:400; margin-bottom:14px; color:var(--dark); }

/* ============================================
   SERVICES GRID — Animated
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  opacity: 0;
  animation: cardEntrance 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.service-card:nth-child(1) { animation-delay: 0.06s; }
.service-card:nth-child(2) { animation-delay: 0.13s; }
.service-card:nth-child(3) { animation-delay: 0.20s; }
.service-card:nth-child(4) { animation-delay: 0.27s; }
.service-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(-8deg); }
.service-card h3 { font-family:var(--font-display); font-size:1.3rem; font-weight:400; color:var(--dark); margin-bottom:12px; }
.service-card p  { font-size:0.88rem; color:var(--text-muted); margin-bottom:24px; line-height:1.6; }
.service-card .btn-outline { color:var(--saffron-dark); border-color:var(--saffron); }
.service-card .btn-outline:hover { background:var(--saffron); color:var(--white); border-color:var(--saffron); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  border: 2px solid rgba(232,101,10,0.1);
  transition: box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: var(--saffron);
}
.stars { color:var(--saffron); font-size:1.1rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card p { font-size:0.92rem; color:var(--text-muted); font-style:italic; line-height:1.7; margin-bottom:20px; }
.testimonial-card strong { font-size:0.85rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--saffron-dark); }

/* ============================================
   CTA SECTION — Subtle pulse on button
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron), var(--saffron-light));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative glow orbs */
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -120px; left: -80px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.cta-section h2 { font-family:var(--font-display); font-size:clamp(1.8rem,3.5vw,2.6rem); color:var(--white); font-weight:400; margin-bottom:12px; }
.cta-section p  { font-size:1rem; color:rgba(255,255,255,0.85); margin-bottom:32px; }
.cta-section .btn-wa {
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================
   REVIEWS STRIP
   ============================================ */
.reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}
.reviews-strip .review-card {
  background: var(--white);
  border: 2px solid rgba(232,101,10,0.15);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(232,101,10,0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
  animation: cardEntrance 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.reviews-strip .review-card:nth-child(1) { animation-delay: 0.04s; }
.reviews-strip .review-card:nth-child(2) { animation-delay: 0.11s; }
.reviews-strip .review-card:nth-child(3) { animation-delay: 0.18s; }
.reviews-strip .review-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 10px 32px rgba(232,101,10,0.15);
  transform: translateY(-5px);
}
.reviews-strip .review-card-top {
  display: flex; align-items: center;
  gap: 13px; margin-bottom: 14px;
}
.reviews-strip .review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,101,10,0.1);
  border: 1px solid rgba(232,101,10,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 600;
  color: var(--saffron-dark); flex-shrink: 0;
}
.reviews-strip .review-meta { flex: 1; }
.reviews-strip .review-meta strong { font-size: 0.9rem; color: var(--dark); display: block; font-weight: 600; }
.reviews-strip .review-meta span   { font-size: 0.76rem; color: var(--text-muted); }
.reviews-strip .review-date {
  font-size: 0.7rem; color: var(--saffron);
  white-space: nowrap; margin-left: auto; flex-shrink: 0;
}
.reviews-strip .review-stars { color: var(--saffron); font-size: 0.88rem; letter-spacing: 3px; margin-bottom: 10px; }
.reviews-strip .review-service-tag {
  display: inline-block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron-dark); background: rgba(232,101,10,0.1);
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(232,101,10,0.25); margin-bottom: 12px;
}
.reviews-strip .review-text { font-size: 0.86rem; color: var(--text-muted); font-style: italic; line-height: 1.8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .collections-grid     { grid-template-columns: repeat(2,1fr); }
  #home-collections-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .features-grid        { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .reviews-strip { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Hero text — larger on mobile when image active */
  .hero-content {
    padding: 90px 20px 48px;
  }
  .hero-content h1 { font-size: clamp(2.4rem, 10vw, 4rem); }

  /* Tighter card grid */
  #home-collections-grid { gap: 10px; }

  /* Service cards — 2 cols on tablet/large mobile */
  .services-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .service-card  { padding: 24px 18px; }

  /* Features strip */
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .collections-grid      { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  #home-collections-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .services-grid         { grid-template-columns: 1fr; }
  .features-grid         { grid-template-columns: 1fr; }
  .feature-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .reviews-strip         { grid-template-columns: 1fr; gap: 16px; }
  .reviews-strip .review-card { padding: 20px; }

  /* Card animations less pronounced on mobile — performance */
  .home-col-card:hover { transform: translateY(-3px); }
  .service-card:hover  { transform: translateY(-4px); }

  /* Hero mobile — tighter */
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 12px 24px; font-size: 0.7rem; }
}

/* ============================================
   REDUCE MOTION — Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .home-col-card,
  .service-card,
  .reviews-strip .review-card,
  .feature-item,
  .hero-content,
  .hero-btns {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .home-col-img img,
  .home-col-img::after,
  .f-icon,
  .service-icon { transition: none !important; }
  .cta-section .btn-wa { animation: none !important; }
}


/* ============================================================
   HERO PREMIUM ANIMATIONS
   1. Staggered Entrance
   2. Typewriter (JS)
   3. Gold Glow on Heading (text-shadow — mobile safe)
   4. Sparkle Particles (JS)
   5. Floating Elements (JS)
   ============================================================ */

/* ── 1. STAGGERED ENTRANCE ── */
.hero-content {
  animation: none;
}
.hero-content .section-badge {
  opacity: 0;
  animation: heroSlideDown 0.6s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero-content h1 {
  opacity: 0;
}
.hero-content > p {
  opacity: 0;
  animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
.hero-btns {
  opacity: 0;
  animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.85s forwards !important;
}
@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── 3. GOLD GLOW on Heading (NO background-clip — mobile safe) ── */
.hero-content h1 {
  animation:
    heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s forwards,
    goldGlow    3.5s ease-in-out 1.6s infinite;
}
@keyframes goldGlow {
  0%,100% { text-shadow: none; }
  50% {
    text-shadow:
      0 0 12px rgba(201,168,76,0.6),
      0 0 30px rgba(201,168,76,0.3),
      0 2px 6px rgba(0,0,0,0.3);
  }
}
.hero--has-img .hero-content h1 {
  animation:
    heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s forwards,
    whiteGlow   3.5s ease-in-out 1.6s infinite;
}
@keyframes whiteGlow {
  0%,100% {
    text-shadow:
      0 2px 4px  rgba(0,0,0,0.9),
      0 6px 20px rgba(0,0,0,0.7),
      0 12px 40px rgba(0,0,0,0.5);
  }
  50% {
    text-shadow:
      0 2px 4px  rgba(0,0,0,0.9),
      0 6px 20px rgba(0,0,0,0.7),
      0 12px 40px rgba(0,0,0,0.5),
      0 0 20px rgba(255,220,100,0.55),
      0 0 45px rgba(255,220,100,0.28);
  }
}


/* ── REDUCE MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .hero-content .section-badge,
  .hero-content h1,
  .hero-content > p,
  .hero-btns {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero-particle,
  .hero-float { display: none !important; }
}