/* ═══════════════════════════════════════════════════════════════
   QUEEN'S COLLECTION — HOME PAGE STYLES
   home.css  |  All styles specific to index.html

   Contents:
   1.  Hero Section
   2.  Marquee Strip
   3.  Gender Nav Cards
   4.  Collections Grid
   5.  New Arrivals / Products Grid
   6.  Editorial Banner
   7.  Lookbook Teaser
   8.  Trust Bar
   9.  Social Strip
   10. Search Overlay
   11. Responsive
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background slide layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
}

/*
  ── IMPORTANT: Replace these gradients with your REAL photos ──
  To add a real image:
    background-image: url('../images/hero/hero-1.jpg');
  The gradients below are beautiful placeholders
  that show the site working right now.
*/
.hero__slide--1 {
  background:
    linear-gradient(135deg,
      rgba(139, 32, 32, 0.6) 0%,
      rgba(10, 10, 10, 0.3) 50%,
      rgba(26, 92, 46, 0.5) 100%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.05) 0px, rgba(201,168,76,0.05) 2px,
      transparent 2px, transparent 20px
    ),
    #1a0a05;
}

.hero__slide--2 {
  background:
    linear-gradient(135deg,
      rgba(26, 92, 46, 0.5) 0%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(201,168,76, 0.3) 100%
    ),
    #0a1205;
}

.hero__slide--3 {
  background:
    linear-gradient(135deg,
      rgba(201,168,76, 0.3) 0%,
      rgba(10, 10, 10, 0.5) 50%,
      rgba(139, 32, 32, 0.4) 100%
    ),
    #100a05;
}

/* Overlay — darkens background for text legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 1;
}

/* Kente border strip at bottom of hero */
.hero__kente-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 16px,
    var(--black) 16px, var(--black) 20px,
    var(--kente-red) 20px, var(--kente-red) 32px,
    var(--black) 32px, var(--black) 36px,
    var(--kente-green) 36px, var(--kente-green) 48px,
    var(--black) 48px, var(--black) 52px
  );
  z-index: 3;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-6);
  max-width: 800px;
}

/* Small label above headline */
.hero__label {
  font-size: var(--text-xs);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
  font-weight: 400;
}

/* Gold line divider */
.hero__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-6);
  transform-origin: left;
}

/* Main title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-6);
}

.hero__title-line {
  display: block;
}

.hero__title-em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

/* Subtitle */
.hero__subtitle {
  font-size: var(--text-xs);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: var(--space-10);
}

/* CTA buttons row */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Slide indicators (dots) */
.hero__indicators {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-3);
  z-index: 3;
}

.hero__dot {
  width: 24px;
  height: 2px;
  background: var(--white-30);
  border: none;
  cursor: pointer;
  transition: all var(--dur-base);
  padding: 0;
}

.hero__dot.is-active {
  background: var(--gold);
  width: 40px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  right: var(--space-8);
  bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: 3;
}

.hero__scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* Hero reveal animations */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.9s var(--ease-out) forwards;
}

.reveal-hero--delay-1 { animation-delay: 0.3s; }
.reveal-hero--delay-2 { animation-delay: 0.5s; }
.reveal-hero--delay-3 { animation-delay: 0.7s; }
.reveal-hero--delay-4 { animation-delay: 0.9s; }
.reveal-hero--delay-5 { animation-delay: 1.1s; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}


/* ─────────────────────────────────────────
   2. MARQUEE STRIP
───────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: var(--space-3) 0;
  overflow: hidden;
}

.marquee-strip .marquee-content {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}


/* ─────────────────────────────────────────
   3. GENDER NAV CARDS
───────────────────────────────────────── */
.gender-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gender-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
}

.gender-card__image {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
}

.gender-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gender-card__image--women .gender-card__placeholder {
  background: linear-gradient(160deg, #3d0a1a 0%, #8B2020 50%, #1a0805 100%);
}

.gender-card__image--men .gender-card__placeholder {
  background: linear-gradient(160deg, #0a1a10 0%, #1A5C2E 50%, #051008 100%);
}

.gender-card__image--kids .gender-card__placeholder {
  background: linear-gradient(160deg, #1a1205 0%, #6B521F 50%, #0a0a05 100%);
}

.gender-card:hover .gender-card__placeholder {
  transform: scale(1.05);
}

.gender-card__icon {
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.4);
}

.gender-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  letter-spacing: 2px;
}


/* ─────────────────────────────────────────
   4. COLLECTIONS GRID
───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 300;
  color: var(--white);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.collections__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.collection-card__image {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.collection-card--tall .collection-card__image {
  height: 580px;
}

.collection-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--dur-slow) var(--ease-out);
}

.collection-card:hover .collection-card__placeholder {
  transform: scale(1.04);
}

.collection-card__placeholder--party {
  background: linear-gradient(170deg, #3d0a1a 0%, #8B2020 40%, #6B521F 100%);
}

.collection-card__placeholder--home {
  background: linear-gradient(170deg, #051008 0%, #1A5C2E 40%, #0a1205 100%);
}

.collection-card__placeholder--outdoor {
  background: linear-gradient(170deg, #0a0a05 0%, #4a3010 40%, #1A5C2E 100%);
}

/* Background geometric pattern on placeholders */
.collection-card__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(201,168,76,0.06) 30px,
      rgba(201,168,76,0.06) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(201,168,76,0.06) 30px,
      rgba(201,168,76,0.06) 31px
    );
}

.collection-card__icon {
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1;
}

/* Overlay that slides up on hover */
.collection-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  z-index: 2;
  transform: translateY(10px);
  transition: transform var(--dur-base) var(--ease-out);
}

.collection-card:hover .collection-card__overlay {
  transform: translateY(0);
}

.collection-card__count {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.collection-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.collection-card__desc {
  font-size: var(--text-xs);
  letter-spacing: 1px;
  color: var(--white-60);
  margin-bottom: var(--space-5);
}


/* ─────────────────────────────────────────
   5. NEW ARRIVALS / PRODUCTS GRID
───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* Product image placeholders with African-inspired colour gradients */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-card__placeholder--1 {
  background: linear-gradient(160deg, #3d0a1a, #8B2020 60%, #4a1a0a);
}
.product-card__placeholder--2 {
  background: linear-gradient(160deg, #051008, #1A5C2E 60%, #0a1a10);
}
.product-card__placeholder--3 {
  background: linear-gradient(160deg, #1a1205, #8B6F35 60%, #3d2a05);
}
.product-card__placeholder--4 {
  background: linear-gradient(160deg, #0a0520, #2d1a5c 60%, #0a0a2a);
}


/* ─────────────────────────────────────────
   6. EDITORIAL BANNER
───────────────────────────────────────── */
.editorial-banner {
  position: relative;
  padding: var(--space-32) var(--space-6);
  overflow: hidden;
  text-align: center;
}

.editorial-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0805 0%, #1a1205 40%, #0a0a0a 100%);
}

.editorial-banner__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.04) 40px,
      rgba(201,168,76,0.04) 41px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.04) 40px,
      rgba(201,168,76,0.04) 41px
    );
}

.editorial-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.editorial-banner__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin: var(--space-5) 0 var(--space-6);
}

.editorial-banner__text {
  font-size: var(--text-base);
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ─────────────────────────────────────────
   7. LOOKBOOK TEASER
───────────────────────────────────────── */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-4);
  min-height: 600px;
}

.lookbook-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  flex: 1;
}

.lookbook-item--large {
  height: 100%;
}

.lookbook-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--dur-slow) var(--ease-out);
}

.lookbook-item:hover .lookbook-item__placeholder {
  transform: scale(1.03);
}

.lookbook-item__placeholder--1 {
  background: linear-gradient(160deg, #1a0a05, #8B2020 50%, #3d0a1a);
}
.lookbook-item__placeholder--2 {
  background: linear-gradient(160deg, #0a1205, #1A5C2E 50%, #051008);
  min-height: 200px;
}
.lookbook-item__placeholder--3 {
  background: linear-gradient(160deg, #0a0805, #6B521F 50%, #1a1205);
  min-height: 200px;
}

.lookbook-item__label {
  width: 100%;
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}

.lookbook-item__label span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  font-style: italic;
}


/* ─────────────────────────────────────────
   8. TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  background: var(--black-soft);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  padding: var(--space-12) 0;
  text-align: center;
}

.trust-item__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: block;
}

.trust-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.trust-item__text {
  font-size: var(--text-sm);
  color: var(--white-60);
  line-height: 1.6;
}


/* ─────────────────────────────────────────
   9. SOCIAL / INSTAGRAM STRIP
───────────────────────────────────────── */
.social-strip__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-style: italic;
  margin: var(--space-3) 0 var(--space-10);
}

.social-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

.social-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.social-item__placeholder {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-base) var(--ease-out);
}

.social-item:hover .social-item__placeholder {
  transform: scale(1.08);
}

.social-item__placeholder--1 { background: linear-gradient(135deg, #8B2020, #3d0a1a); }
.social-item__placeholder--2 { background: linear-gradient(135deg, #1A5C2E, #051008); }
.social-item__placeholder--3 { background: linear-gradient(135deg, #6B521F, #1a1205); }
.social-item__placeholder--4 { background: linear-gradient(135deg, #2d1a5c, #0a0520); }
.social-item__placeholder--5 { background: linear-gradient(135deg, #5c1a1a, #2a0808); }
.social-item__placeholder--6 { background: linear-gradient(135deg, #1a3d20, #051008); }


/* ─────────────────────────────────────────
   10. SEARCH OVERLAY
───────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: var(--space-8);
  right: var(--space-8);
  font-size: var(--text-xl);
  color: var(--white-60);
  cursor: pointer;
  transition: color var(--dur-fast);
  background: none;
  border: none;
}

.search-close:hover { color: var(--gold); }

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold-dim);
  width: 100%;
  max-width: 640px;
  padding-bottom: var(--space-3);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  padding: var(--space-3) 0;
}

.search-input::placeholder { color: var(--white-30); }

.search-submit {
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  transition: transform var(--dur-fast);
}

.search-submit:hover { transform: scale(1.1); }

.search-hint {
  font-size: var(--text-sm);
  color: var(--white-30);
  letter-spacing: 1px;
}


/* ─────────────────────────────────────────
   11. RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .collection-card:last-child {
    grid-column: span 2;
  }

  .collection-card:last-child .collection-card__image {
    height: 300px;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-item:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero__ctas {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__scroll-hint {
    display: none;
  }

  .gender-nav__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .collections__grid {
    grid-template-columns: 1fr;
  }

  .collection-card:last-child {
    grid-column: span 1;
  }

  .collection-card__image,
  .collection-card--tall .collection-card__image {
    height: 360px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lookbook-col {
    flex-direction: row;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .social-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-item:nth-child(n+4) {
    display: none;
  }

  .reveal--delay-4,
  .reveal--delay-5 {
    transition-delay: 0ms;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .gender-nav__grid {
    gap: var(--space-2);
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .social-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-item:nth-child(n+5) {
    display: none;
  }
}
