/* ==============================
   BASE STYLES
   ============================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: #2e003c;
  background: linear-gradient(180deg, #f5f0f0 0%, #faf7ff 45%, #f5fcff 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  animation: subtleShift 30s ease-in-out infinite alternate;
}

/* optional: tone down blobs a bit more */
.gradient-blob {
  opacity: 0.14;
  filter: blur(180px);
}



/* ======================================
   HERO SECTION (Clean, Responsive)
====================================== */

header {
  position: relative;
  margin: 40px auto;
  max-width: 940px;
  border-radius: 32px;
  background: #ffffff;
  text-align: center;
  padding: 80px 40px 70px;
  box-shadow: 0 8px 30px rgba(123,47,247,0.08);
  overflow: visible;
}

/* Animated luxury soft-line background */
header::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -8%;
  width: 116%;
  height: 140%;
  border-radius: inherit;
  z-index: -1;
  filter: blur(36px);
  opacity: 0.55; /* ↓ softer overall */
  
  background:
    /* very soft lines */
    repeating-linear-gradient(
      115deg,
      rgba(255,255,255,0.55) 0px,
      rgba(255,255,255,0.55) 2px,
      rgba(123,47,247,0.03) 4px, /* << reduced from .07 */
      rgba(0,196,204,0.02) 6px,  /* << reduced from .05 */
      transparent 9px
    ),

    /* softer radial white glow */
    radial-gradient(
      circle at 50% 40%,
      rgba(255,255,255,0.75) 0%,
      rgba(123,47,247,0.05) 30%, /* softer tint */
      rgba(0,196,204,0.03) 55%,
      transparent 90%
    );

  background-size: 200% 200%;

  animation:
    heroLines 40s linear infinite,   /* slower */
    heroGlow 26s ease-in-out infinite alternate; /* softer glow */
}

/* Slow drifting lines */
@keyframes heroLines {
  0%   { background-position: 0% 0%; }
  100% { background-position: 180% 180%; }
}

/* Very soft breathing glow */
@keyframes heroGlow {
  0%   { opacity: 0.5; transform: scale(1); }
  50%  { opacity: 0.65; transform: scale(1.015); }
  100% { opacity: 0.5; transform: scale(1); }
}



/* ======================================
   LUXURY COIN WRAPPER
====================================== */

.luxury-coin-wrapper {
  position: relative;
  width: 260px;
  height: 310px;
  margin: 0 auto 22px; /* Option C (tight spacing) */
}


/* ======================================
   GOLD AURA RING
====================================== */

.aura-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -2;

  background: radial-gradient(
    circle,
    rgba(255,235,160,0.6) 0%,
    rgba(255,215,120,0.35) 40%,
    rgba(255,190,60,0.18) 65%,
    rgba(255,180,0,0) 100%
  );

  filter: blur(30px);
  animation: auraPulse 4s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.16); opacity: 1; }
}


/* ======================================
   MAIN COIN (luxury version)
====================================== */

.luxury-coin {
  width: 260px;
  height: 260px;
  background: url("/assets/coin-1.png") center/contain no-repeat;
  position: relative;

  filter:
    drop-shadow(0 18px 32px rgba(255,215,0,0.25))
    drop-shadow(0 0 18px rgba(255,230,160,0.55));

  animation:
    coinFloat 2.2s ease-in-out infinite,
    coinTilt 5s ease-in-out infinite,
    coinPulse 4.5s ease-in-out infinite;
}

/* Float more (Option A) */
@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-32px); }
}

/* Soft tilt */
@keyframes coinTilt {
  0%, 100% { transform: rotate(0deg); }
  33%      { transform: rotate(1.8deg); }
  66%      { transform: rotate(-1.8deg); }
}

/* Subtle breathing pulse */
@keyframes coinPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}


/* ======================================
   GOLD SHIMMER (smooth, locked range)
====================================== */

.luxury-coin::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px; 
  width: 60px;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.25) 40%,
    rgba(255,255,255,0.85) 55%,
    rgba(255,255,255,0.25) 75%,
    rgba(255,255,255,0) 100%
  );

  filter: blur(10px);
  transform: skewX(-18deg);

  animation: goldShimmer 3.2s ease-in-out infinite;
  opacity: 0;
}

@keyframes goldShimmer {
  0%   { left: -20px; opacity: 0; }
  12%  { opacity: 1; }
  50%  { left: 200px; opacity: 1; } /* stays inside coin */
  90%  { opacity: 0; }
  100% { left: 200px; opacity: 0; }
}


/* ======================================
   HEADING & DESCRIPTION
====================================== */

header h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #32323f;
  margin: 2px 0 12px; /* Option A spacing */
}

header p {
  max-width: 650px;
  margin: 0 auto 26px;
  font-size: 1.2em;
  color: #1e1e22;
  line-height: 1.65;
}


/* ==============================
   MOBILE RESPONSIVE HERO
============================== */

@media (max-width: 600px) {

  .luxury-coin-wrapper {
    width: 220px;
    margin-bottom: -10px; /* closes the gap even more */
    height: 250px;        /* slightly smaller wrapper to reduce spacing */
  }

  .luxury-coin {
    width: 220px;
    height: 220px;
  }

  .aura-ring {
    width: 260px;
    height: 260px;
  }

  header {
    padding: 60px 22px;
  }

  header h1 {
    font-size: 2rem;
    margin-top: -10px;   /* pulls H1 upward toward coin */
    margin-bottom: 10px; /* a bit tighter before the paragraph */
  }

  header p {
    font-size: 1.05rem;
    margin-bottom: 22px;
  }

  .luxury-coin::after {
    width: 50px;
    left: -16px;
  }

  @keyframes goldShimmer {
    0%   { left: -16px; opacity: 0; }
    12%  { opacity: 1; }
    50%  { left: 165px; opacity: 1; }
    90%  { opacity: 0; }
    100% { left: 165px; opacity: 0; }
  }
}

@media (max-width: 480px) {

  .luxury-coin-wrapper {
    margin-bottom: 4px !important;   /* was ~20px visually */
    height: 240px !important;        /* reduce vertical container height */
  }

  header h1 {
    margin-top: -6px !important;     /* pull title upward */
    margin-bottom: 10px !important;  /* tighter spacing below */
  }
}

/* --- Tighter spacing for iPads & medium tablets --- */
@media (min-width: 768px) and (max-width: 1024px) {

  .luxury-coin-wrapper {
    margin-bottom: 10px !important;   /* reduce big empty gap */
    height: 260px !important;         /* slightly shorter wrapper */
  }

  header h1 {
    margin-top: -4px !important;      /* pull heading upward */
    margin-bottom: 14px !important;   /* tighten spacing under heading */
  }
}






/* ============================
   SHADOW
============================ */
/* .coin-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,0,0,0.35), rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: shadowFloat 2.4s ease-in-out infinite;
}

@keyframes shadowFloat {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50%      { transform: translateX(-50%) scale(0.8); opacity: 0.18; }
} */



header h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.02em;
  margin-top: 8px;     /* tighter spacing under coin */
  margin-bottom: 18px;
  color: #2c2c34;
}


header p {
  font-size: 1.2em;
  color: #1e1e22;
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeUp 1.6s ease both;
  animation-delay: 0.2s;
}

/* CTA Button */
.cta-button.small {
  display: inline-block;
  padding: 14px 44px;
  background: linear-gradient(135deg, #6A11CB, #00C4CC);
  color: #ffffff;
  border: none;
  border-radius: 40px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(106, 17, 203, 0.25),
              inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.5s ease, box-shadow 0.5s ease, color 0.4s ease;
  text-decoration: none;
}

.cta-button.small:hover {
  background: linear-gradient(135deg, #7B2FF7, #00E1D2);
  box-shadow: 0 6px 30px rgba(123, 47, 247, 0.35),
              inset 0 2px 1px rgba(255,255,255,0.2);
  color: #fff;
}



/* ==============================
   KITS SECTION
   ============================== */
.kits-feature {
  background: linear-gradient(120deg, #fbc2eb 0%, #a6c1ee 100%);
  border-radius: 18px;
  box-shadow: 
    0 4px 22px rgba(123,47,247,0.06),
    0 2px 16px rgba(0,196,204,0.04);
  
  max-width: 950px;
  margin: 18px auto 50px;   /* tighter top space */
  
  padding: 55px 0 60px;     /* reduced top padding */
  text-align: center;
  transition: transform 0.3s ease;
}

.kits-heading {
  font-size: 3em;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: 2px;
  /* text-transform: lowercase; */
  font-weight: 700;
  position: relative;
}
.kits-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #00C4CC, #7B2FF7, #FF4FD8);
}

.kits-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.kit-card {
  flex: 1 1 350px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(212,143,188,0.25);
  max-width: 380px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(178,106,175,0.4), 0 0 12px rgba(123,47,247,0.15);
}
.kit-card img {
  width: 90%;
  border-radius: 12px;
  margin-bottom: 25px;
}
.kit-card h3 {
  margin: 15px 0;
  font-size: 1.6em;
  background: linear-gradient(120deg, #00C4CC, #7B2FF7, #FF4FD8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kit-card p {
  font-size: 1.1em;
  color: #1e1e22;
  margin-bottom: 20px;
}

/* ==============================
   FAQ SECTION
   ============================== */
.content {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px auto;
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  text-align: left;
}
.content h2 {
  font-size: 2em;
  font-weight: 700;
  /* background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 24px;
  color: #32323f;
}
.content ul { list-style: none; padding: 0; margin: 0; }
.content li { margin-bottom: 22px; }
.content strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 650;
  font-size: 1.1em;
  color: #1e1e22;
}
.content p {
  margin: 0;
  color: #1e1e22;;
  font-size: 1.05em;
  line-height: 1.6;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  text-align: center;
  padding: 20px 0 30px;
  font-size: 0.95em;
  color: #6B49A3;
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 950px) {
  .kits-feature, .content, header { max-width: 94vw; padding-left: 3vw; padding-right: 3vw; }
}

@media (max-width: 768px) {
  .gradient-blob { width: 300px; height: 300px; filter: blur(120px); opacity: 0.3; }
}

@media (max-width: 600px) {
  .cta-button.small { padding: 12px 28px; font-size: 1em; }
  header { padding: 60px 24px; }
  .kit-card { padding: 26px 20px; }
  .kit-card img { width: 100%; }
  .gradient-blob { width: 200px; height: 200px; filter: blur(80px); opacity: 0.2; animation: none; }
}
/* ===== FIX: Remove top white gap on mobile (375px and below) ===== */
@media (max-width: 480px) {
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
  }

@media (max-width: 480px) {
  body.home header {
    margin-top: 0 !important;
    padding-top: 40px; /* keep padding, optional */
  }
}

  html {
    scroll-behavior: smooth;
  }
}

@media (max-width: 900px) {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }

  /* Make blobs purely decorative, not affect layout */
  .gradient-blob,
  .gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -2 !important;
    pointer-events: none;
  }

  /* Fix the hero placement */
  .cover-hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
    position: relative;
    z-index: 1;
  }

  /* If there’s still a small offset, force hero to start at 0 */
  body > .cover-hero:first-of-type {
    margin-top: 0 !important;
    transform: translateY(-20px);
  }

  /* Ensure no invisible animation padding from reveal/fade */
  .reveal.fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* MOBILE FIX: Hide decorative blobs so header starts at the top */
@media (max-width: 600px) {
  .gradient-blob,
  .gradient-overlay,
  .gradient-overlay-2 {
    display: none !important;
  }
}
@media (max-width: 600px) {
  header {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  body {
    background-attachment: scroll !important;
  }
}



