/* ============================================================
   11ELEVEN SOCIAL — Global Stylesheet
   ── Edit the :root variables to restyle the entire site ──
   ============================================================ */

/* ─── CUSTOMISE HERE ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --pink-bg:       #f4ebdf;       /* main page background   */
  --pink-light:    #6b859b;       /* lighter section bg     */
  --pink-mid:      #93b1c2;       /* cards / accents        */
  --rose:          #000000;       /* headline / accent red  */
  --rose-dark:     #000000;       /* hover / dark text      */
  --text:          #000000;       /* body text              */
  --text-muted:    #414447;       /* subtext                */
  --white:         #ffffff;

  /* Typography */
  --font-display:  'Advercase', serif;   /* big headlines */
  --font-body:     'DM Sans', sans-serif;        /* body text     */

  /* Layout */
  --nav-h:         100px;
  --max-w:         1140px;
  --radius:        10px;
  --section-pad:   80px 40px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background:  var(--pink-bg);
  color:       var(--text);
  font-size:   15px;
  line-height: 1.65;
  overflow-x:  hidden;
  padding-top: var(--nav-h);
}
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; border-radius: 6px; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section   { padding: var(--section-pad); }

/* page-level giant headline */
.page-title {
  font-family: var(--font-display);
  font-size:   clamp(52px, 9vw, 120px);
  color:       var(--rose);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  text-align:  center;
  padding:     56px 32px 40px;
}

/* section headline (smaller) */
.section-title {
  font-family: var(--font-display);
  font-size:   clamp(28px, 4vw, 52px);
  color:       var(--rose);
  font-weight: 700;
  font-style:  italic;
  line-height: 1.05;
}

/* category tag below gallery */
.gallery-tag {
  text-align:     center;
  font-size:      11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-top:     18px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display:       inline-block;
  border:        1.5px solid var(--rose);
  color:         var(--rose);
  padding:       10px 28px;
  border-radius: 4px;
  font-size:     13px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:    background .2s, color .2s;
  cursor:        pointer;
  background:    transparent;
  font-family:   var(--font-body);
}
.btn:hover { background: var(--rose); color: var(--white); }
.btn-solid { background: var(--rose); color: var(--white); }
.btn-solid:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

/* ─── NAV ────────────────────────────────────────────────── */
.site-nav {
  position:   fixed;
  top: 0; left: 0; right: 0;
  height:     var(--nav-h);
  z-index:    900;
  background: var(--pink-bg);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 12px rgba(180,50,58,.12); }

.nav-inner {
  max-width:   var(--max-w);
  margin:      0 auto;
  height:      100%;
  display:     flex;
  align-items: center;
  justify-content: space-between;
  padding:     0 32px;
  border-bottom: 1px solid rgba(180,50,58,.15);
}

.nav-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 20px;
}

.nav-brand {
  display:     flex;
  align-items: center;
  gap:         10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand-text {
  font-family:    var(--font-display);
  font-size:      16px;
  font-weight:    700;
  font-style:     italic;
  color:          var(--rose);
  letter-spacing: .5px;
  white-space:    nowrap;
}

.nav-list {
  display:     flex;
  gap:         28px;
  align-items: center;
}
.nav-list a {
  font-size:      12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color:          var(--text-muted);
  transition:     color .2s;
  white-space:    nowrap;
}
.nav-list a:hover,
.nav-list a.active { color: var(--rose); font-weight: 500; }

.nav-burger {
  display:    none;
  flex-direction: column;
  gap:        5px;
  background: none;
  border:     none;
  cursor:     pointer;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  display: block;
}

.nav-mobile {
  display:        none;
  flex-direction: column;
  background:     var(--pink-bg);
  padding:        24px 32px 32px;
  border-bottom:  1px solid rgba(180,50,58,.15);
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family:    var(--font-display);
  font-size:      22px;
  font-style:     italic;
  color:          var(--rose);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background:  var(--pink-mid);
  text-align:  center;
  padding:     56px 32px 40px;
  border-top:  1px solid rgba(180,50,58,.15);
}
.footer-brand {
  font-family: var(--font-display);
  font-size:   26px;
  font-style:  italic;
  font-weight: 700;
  color:       var(--rose);
  margin-bottom: 6px;
}
.footer-sub  { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-links { display: flex; gap: 12px; justify-content: center; align-items: center; margin-bottom: 20px; font-size: 13px; }
.footer-links a { color: var(--rose); transition: opacity .2s; }
.footer-links a:hover { opacity: .7; }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* ─── HORIZONTAL GALLERY ROW ─────────────────────────────── */
.gallery-row {
  display: flex;
  gap:     12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.gallery-row::-webkit-scrollbar { display: none; }
.gallery-row .gcard {
  flex:         0 0 auto;
  width:        clamp(140px, 18vw, 220px);
  aspect-ratio: 9/16;
  background:   var(--pink-mid);
  border-radius: 8px;
  overflow:     hidden;
  position:     relative;
}
.gallery-row .gcard img { width: 100%; height: 100%; object-fit: cover; }

/* placeholder gradient cards */
.gcard.ph-1 { background: linear-gradient(160deg,#e8c4bc 0%,#d4908a 100%); }
.gcard.ph-2 { background: linear-gradient(160deg,#f0d0c8 0%,#c88080 100%); }
.gcard.ph-3 { background: linear-gradient(160deg,#dbb0a8 0%,#b86858 100%); }
.gcard.ph-4 { background: linear-gradient(160deg,#f4dcd8 0%,#cc9090 100%); }
.gcard.ph-5 { background: linear-gradient(160deg,#e0c0b8 0%,#c07070 100%); }

/* label inside card */
.gcard-label {
  position:   absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-size:  10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  :root { --section-pad: 56px 24px; }
  .nav-list   { display: none; }
  .nav-burger { display: flex; }
  .container  { padding: 0 20px; }
}

/* ─── GLOBAL MOBILE FIXES ────────────────────────────────── */
@media (max-width: 768px) {
  .page-title {
    font-size: clamp(40px, 12vw, 80px);
    padding: 36px 20px 28px;
  }
  .section-title {
    font-size: clamp(24px, 7vw, 40px);
  }
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .nav-inner {
    padding: 0 16px;
  }
  .nav-logo {
    height: 60px;
    margin-top: 16px;
  }
  .site-footer {
    padding: 40px 20px 28px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .brands-section {
    padding: 0 12px 48px;
  }
}
