/* ── Art Incognito 2026 — Shared Styles ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --pink: #E84B8A; --pink-hot: #ff2d7b; --pink-deep: #9e2555;
  --gold: #F5B731; --gold-light: #ffd96a; --gold-pale: #fff0cc;
  --cyan: #00E5E5;
  --dark: #16162a; --darker: #0c0c19;
  --white: #fff; --off-white: #f0eee8;
  --gray: #8e93a8; --text: #c5c9d6;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; background: var(--darker); color: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

.cursor-glow {
  position: fixed; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(232,75,138,.06) 0%, transparent 70%);
  transform: translate(-50%, -50%); transition: opacity .4s; opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

.grain-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px); transition: background .5s, box-shadow .5s;
}
.nav.solid {
  background: rgba(12,12,25,.92); backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.nav-logo { height: 28px; opacity: .85; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-right a {
  color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; transition: color .3s;
}
.nav-right a:hover { color: #fff; }
.nav-ticket {
  background: var(--gold) !important; color: var(--darker) !important;
  padding: 9px 22px !important; border-radius: 100px !important; font-weight: 800 !important;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s !important;
}
.nav-ticket:hover { transform: scale(1.05) !important; box-shadow: 0 6px 24px rgba(245,183,49,.35) !important; }
.mob-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
@media(max-width:860px){
  .nav-right { display: none; }
  .mob-toggle { display: block; }
  .nav-right.open {
    display: flex; flex-direction: column; gap: 24px;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(12,12,25,.97); backdrop-filter: blur(24px);
    padding: 40px 32px; z-index: 99;
  }
  .nav-right.open a { font-size: 14px; }
}

/* PAGE HERO (for sub-pages) */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 140px 24px 80px;
  background: linear-gradient(165deg, #ff3080 0%, var(--pink) 35%, #d35535 65%, var(--gold) 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
  position: relative; z-index: 2;
}
.page-hero p {
  color: rgba(255,255,255,.85); font-size: 1.1rem; margin-top: 14px;
  position: relative; z-index: 2;
}
.page-hero .hero-badge {
  display: inline-block; background: var(--darker); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  padding: 8px 24px; border-radius: 8px; margin-top: 18px;
  letter-spacing: 3px; position: relative; z-index: 2;
}

/* KICKER */
.kicker {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .35s cubic-bezier(.34,1.56,.64,1); border: none; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--darker); }
.btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(245,183,49,.3); }

/* FOOTER */
.footer {
  background: var(--darker); border-top: 1px solid rgba(255,255,255,.03);
  padding: 48px 24px; text-align: center;
}
.footer-logos { display: flex; justify-content: center; gap: 40px; align-items: center; margin-bottom: 20px; }
.footer-logos img { height: 32px; opacity: .35; transition: opacity .3s; }
.footer-logos img:hover { opacity: .6; }
.footer p { color: rgba(255,255,255,.2); font-size: .78rem; }
.footer a { color: rgba(255,255,255,.25); transition: color .3s; }
.footer a:hover { color: var(--gold); }

/* GALLERY GRID (shared between gallery + events pages) */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px; padding: 40px 20px;
  max-width: 1400px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  transition: transform .5s cubic-bezier(.25,.8,.25,1), box-shadow .5s, filter .5s;
  filter: saturate(.85) brightness(.92);
}
.gallery-grid img:hover {
  transform: scale(1.05); filter: saturate(1.1) brightness(1.05);
  box-shadow: 0 12px 40px rgba(232,75,138,.2);
  z-index: 2; position: relative;
}
.gallery-grid.landscape img { aspect-ratio: 3/2; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(6,6,14,.94); backdrop-filter: blur(12px);
  justify-content: center; align-items: center; cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: rgba(255,255,255,.6); cursor: pointer;
  background: none; border: none; transition: color .3s;
}
.lb-close:hover { color: #fff; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: rgba(255,255,255,.5); cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.lb-nav:hover { background: rgba(255,255,255,.12); color: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

@media(max-width:600px){
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 16px 8px; }
}
</style>
