/* ========================================
   MONIQUE ELIAS — STYLE.CSS (FULL)
   - Consistent hero text bottom-left (all slides)
   - Centered “TV” Vimeo slide (720p footprint)
   - Gold textured divider
   - Store category cards
   ======================================== */

:root{
  --brick-ember:#c90303ff;
  --rose-kiss:#fd5da1ff;

  --black:#0b0d12;
  --soft-linen:#f1f2ebff;
  --dust-grey:#d8dad3ff;

  --radius:18px;
  --border: rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--soft-linen);
  color: var(--black);
  margin: 0;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  background: rgba(241,242,235,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand-mark{
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brick-ember), var(--rose-kiss));
  display:inline-block;
  box-shadow: 0 0 0 6px rgba(253,93,161,.14);
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-carousel{
  height: 75vh;
  min-height: 560px;
  position: relative;
}
.hero-carousel .carousel-item{
  height: 75vh;
  min-height: 560px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.18)),
    radial-gradient(900px 500px at 18% 20%, rgba(253,93,161,.16), transparent 58%);
}

/* Controls + indicators always visible */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next{
  z-index: 7;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.65));
}
#heroCarousel .carousel-indicators{
  margin-bottom: 16px;
  z-index: 7;
}
.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background-color: transparent;
  opacity: .85;
}
.carousel-indicators .active{
  background-color: #fff;
  opacity: 1;
}

/* ✅ Bottom-left text anchor (ALL slides) */
.hero-content{
  position:absolute;
  left:0;
  right:0;
  bottom: 56px;       /* above dots */
  z-index: 6;         /* above overlay */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none; /* keeps carousel swipe smooth */
}
.hero-actions,
.hero-actions a,
.hero-actions button{
  pointer-events: auto; /* buttons still clickable */
}

.hero-panel{
  display:inline-block;
  max-width: 760px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.hero-kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .92;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.86);
}
.hero-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(2.0rem, 3.6vw, 3.6rem);
  margin-bottom: .5rem;
  color: #fff;
}
.hero-subtitle{
  max-width: 60ch;
  opacity: .92;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  margin-bottom: .65rem;
  color: rgba(255,255,255,.85);
}

/* Buttons */
.btn-brand{
  background: var(--brick-ember);
  border-color: var(--brick-ember);
  color: #fff;
  border-radius: 999px;
  padding: .62rem 1.05rem;
}
.btn-brand:hover{
  background: #a80202;
  border-color: #a80202;
  color: #fff;
}
.btn-outline-brand{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  padding: .62rem 1.05rem;
}
.btn-outline-brand:hover{
  background: rgba(255,255,255,.12);
  color:#fff;
}

/* Badges */
.me-badge{
  display:inline-block;
  padding:.25rem .55rem;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   VIDEO “TV” STAGE
========================= */
.tv-stage{
  position:absolute;
  inset:0;
  z-index:3; /* under text panel, above overlay */
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(1.25rem, 4vh, 3rem) 1rem 6.5rem; /* bottom space for panel + dots */
}
.tv-frame{
  width: min(1280px, 92vw);
  border-radius: 22px;
  padding: 14px;
  background:
    radial-gradient(1200px 420px at 30% 20%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(0,0,0,.35));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 40px 120px rgba(0,0,0,.55),
    0 18px 55px rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tv-screen{
  border-radius: 16px;
  overflow:hidden;
  background:#000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.tv-screen iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* =========================
   GOLD TEXTURED DIVIDER
========================= */
.gold-divider{
  height: 14px;
  width: 100%;
  background:
    linear-gradient(90deg,
      rgba(180,135,60,.0),
      rgba(220,180,90,.85),
      rgba(255,232,170,.95),
      rgba(220,180,90,.85),
      rgba(180,135,60,.0)
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 10px 30px rgba(0,0,0,.08);
  position: relative;
}
.gold-divider::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.22;
  background-image:
    repeating-linear-gradient(135deg, rgba(0,0,0,.22) 0 1px, rgba(0,0,0,0) 1px 6px);
  mix-blend-mode: overlay;
}

/* =========================
   SECTIONS
========================= */
section{ scroll-margin-top: 90px; }
.section-title{
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* =========================
   STORE CATEGORY CARDS
========================= */
.category-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  text-decoration:none;
  display:block;
  position:relative;
  min-height: 220px;
  background: #fff;
}
.category-card .bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  transition: transform .6s ease;
}
.category-card:hover .bg{ transform: scale(1.08); }

.category-card .shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.38)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.35));
}
.category-card .content{
  position:relative;
  z-index:2;
  padding: 18px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:end;
  color:#fff;
}
.category-card h3{ margin:0 0 6px; font-weight:800; }
.category-card p{ margin:0 0 10px; opacity:.92; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background: rgba(241,242,235,.16);
  border: 1px solid rgba(241,242,235,.25);
  width: fit-content;
}

.cat-thumb{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.18);
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

/* =========================
   FOOTER
========================= */
footer{
  background: #000;
  color: var(--dust-grey);
}
footer a{ color: var(--dust-grey); text-decoration:none; }
footer a:hover{ color: #fff; }
.social-btn{
  width:44px;height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
}
.social-btn:hover{
  background: rgba(253,93,161,.18);
  border-color: rgba(253,93,161,.45);
  color:#fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:575px){
  .hero-carousel,
  .hero-carousel .carousel-item{
    min-height: 520px;
  }
  .hero-content{
    bottom: 68px;
  }
  .hero-panel{
    max-width: 92vw;
    padding: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .category-card .bg{ transition:none; }
}
