/* =========================
   HOME PAGE BASE
========================= */

.home-page {
  background: #0b0b0b;
  color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Prevent layout collapse */
section {
  width: 100%;
  position: relative;
}
/* =========================
   HERO SECTION
========================= */

.home-page .hero {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 100px;
  position: relative;
  overflow: hidden;
}

/* Background ONLY here */
.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
    url("../images/hero.jpg.png") center / cover no-repeat;
  z-index: 0;
}

.hero-stack {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}


.hero-brand {
  color: gold;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn.gold {
  background: gold;
  color: #000;
}

.btn.gold:hover {
  background: #ffd700;
}

.btn.outline {
  border: 2px solid gold;
  color: gold;
  background: transparent;
}

.btn.outline:hover {
  background: gold;
  color: #000;
}
/* =========================
   STEPS
========================= */

.steps {
  padding: 100px 20px;
  background: #000;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.step-card {
  padding: 30px;
  border: 1px solid #222;
  border-radius: 14px;
}
/* =========================
   FEATURED PRODUCTS
========================= */

.featured {
  padding: 100px 20px;
  background: #0f0f0f;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.product-card {
  background: #000;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-card img {
  display: none; /* IMAGES OFF FOR NOW */
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}
/* =========================
   CATEGORIES
========================= */

.categories {
  padding: 100px 20px;
  background: #fff;
  color: #111;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.category-card {
  padding: 25px;
  border-radius: 14px;
  border: 2px solid #ddd;
  font-weight: 600;
}
/* =========================
   CTA
========================= */

.cta {
  padding: 100px 20px;
  background: #000;
  text-align: center;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 40px 20px;
  background: #000;
  color: #888;
  text-align: center;
}
/* =========================
   HERO LOGO ZONE (ISOLATED)
========================= */


.hero-logo {
  width: clamp(220px, 28vw, 380px); /* BIGGER LOGO */
  height: auto;
  filter: drop-shadow(0 12px 35px rgba(0,0,0,0.7));
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* =====================================================
   1️⃣ REFINED HERO TYPOGRAPHY
===================================================== */

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 35px;
  line-height: 1.65;
  opacity: 0.9;
}

/* =====================================================
   2️⃣ BRAND ACCENT LINE (UNDER LOGO)
===================================================== */

.brand-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, gold, transparent);
  margin: 18px auto 0;
  border-radius: 3px;
  opacity: 0;
  animation: lineReveal 0.8s ease-out 0.6s forwards;
}

@keyframes lineReveal {
  from {
    width: 40px;
    opacity: 0;
  }
  to {
    width: 90px;
    opacity: 1;
  }
}
/* =====================================================
   HERO LOGO ZONE + ANIMATION (FINAL)
===================================================== */

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -80px;       /* HEIGHT CONTROL */
  margin-bottom: 35px;
  opacity: 0;              /* REQUIRED FOR ANIMATION */
  animation: logoReveal 1.4s ease-out forwards;
}

.hero-logo {
  width: clamp(220px, 28vw, 380px); /* SIZE CONTROL */
  height: auto;
  filter: drop-shadow(0 12px 35px rgba(0,0,0,0.7));
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =====================================================
   3️⃣ STAGGERED HERO TEXT ENTRANCE
===================================================== */

.hero-inner {
  animation: heroFade 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   4️⃣ SCROLL DOWN INDICATOR
===================================================== */

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: "";
  width: 4px;
  height: 8px;
  background: gold;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}
/* =====================================================
   1️⃣ LOGO GOLD GLOW (DELAYED & SUBTLE)
===================================================== */

.hero-logo {
  animation: logoGlow 2.8s ease-in-out infinite alternate;
  animation-delay: 1.6s;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.7));
  }
  to {
    filter:
      drop-shadow(0 0 8px rgba(255,215,0,0.35))
      drop-shadow(0 0 18px rgba(255,215,0,0.25))
      drop-shadow(0 12px 35px rgba(0,0,0,0.7));
  }
}

/* =====================================================
   2️⃣ HERO TEXT ANIMATION (SYNCED AFTER LOGO)
===================================================== */

.hero-inner {
  opacity: 0;
  animation: heroTextReveal 1.2s ease-out forwards;
  animation-delay: 1.1s; /* AFTER LOGO */
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   3️⃣ SCROLL INDICATOR FADE-IN (LAST)
===================================================== */

.scroll-indicator {
  opacity: 0;
  animation: scrollReveal 1s ease-out forwards;
  animation-delay: 2.2s;
}

@keyframes scrollReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* =====================================================
   FINAL HERO ANIMATION PACK (CLEAN & SYNCED)
   1. Logo subtle gold glow (delayed)
   2. Hero text fade-up (after logo)
   3. Scroll indicator fade-in (last)
===================================================== */

/* ---------- 1️⃣ LOGO GOLD GLOW ---------- */

.hero-logo {
  animation: logoGlow 2.6s ease-in-out infinite alternate;
  animation-delay: 1.6s;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.7));
  }
  to {
    filter:
      drop-shadow(0 0 6px rgba(255,215,0,0.35))
      drop-shadow(0 0 16px rgba(255,215,0,0.25))
      drop-shadow(0 12px 35px rgba(0,0,0,0.7));
  }
}

/* ---------- 2️⃣ HERO TEXT REVEAL ---------- */

.hero-inner {
  opacity: 0;
  animation: heroTextReveal 1.1s ease-out forwards;
  animation-delay: 1.1s;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 3️⃣ SCROLL INDICATOR FADE-IN ---------- */

.scroll-indicator {
  opacity: 0;
  animation: scrollReveal 1s ease-out forwards;
  animation-delay: 2.2s;
}

@keyframes scrollReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* =====================================================
   HOME PAGE FINISHING POLISH PACK
   1️⃣ Button micro-interactions
   2️⃣ Section separators
   3️⃣ Featured products polish
===================================================== */

/* =========================
   1️⃣ BUTTON MICRO-INTERACTIONS
========================= */

.btn {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(120%);
  transition: transform 0.6s ease;
}

.btn:active {
  transform: translateY(0);
}

/* =========================
   2️⃣ SECTION SEPARATORS (LUXURY)
========================= */

.steps::before,
.featured::before,
.categories::before,
.cta::before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 0 auto 60px;
  background: linear-gradient(90deg, transparent, gold, transparent);
  opacity: 0.6;
}

/* =========================
   3️⃣ FEATURED PRODUCTS POLISH
========================= */

.product-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  border-color: rgba(255,215,0,0.5);
}

.product-card h3 {
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: gold;
}

.product-card .btn {
  margin-top: 10px;
}
/* =====================================================
   PRODUCT CATEGORIES – PREMIUM BUTTON STYLE
===================================================== */

.category-card {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 26px 20px;
  border-radius: 40px;

  background: #000;
  color: gold;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;

  border: 2px solid rgba(255,215,0,0.45);
  cursor: pointer;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

/* Shine sweep (same language as buttons) */
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,0.35),
    transparent
  );
  transform: translateX(-120%);
}

/* Hover state */
.category-card:hover {
  background: gold;
  color: #000;
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.45);
}

.category-card:hover::after {
  transform: translateX(120%);
  transition: transform 0.7s ease;
}

/* Active (click) feel */
.category-card:active {
  transform: translateY(-2px);
}
/* =========================
   NAVIGATION – PREMIUM STYLE
========================= */

.main-nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Gold underline (hidden by default) */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffdd77);
  transition: width 0.3s ease;
}

/* Hover effect – SAME for all */
.main-nav a:hover {
  color: #d4af37;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Active page */
.main-nav a.active {
  color: #d4af37;
}

.main-nav a.active::after {
  width: 80%;
}
/* ACTIVE NAV LINK */
.main-nav a.active {
  color: #d4af37;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffdd77);
}
.coming-soon-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
/* =========================
   MOBILE BUTTON POLISH
========================= */
@media (max-width: 768px) {

  /* Hero buttons */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 999px;
  }

  /* General buttons inside sections */
  .btn {
    min-height: 48px;
  }

  /* Category cards buttons if any */
  .category-card {
    padding: 18px;
    font-size: 1.05rem;
  }

  /* Prevent buttons from feeling cramped */
  section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

