/* --------------------------------------------------------------
   DJ LISA � MAIN STYLESHEET
   Dark Gothic � Feminine � DJ Aesthetic
   -------------------------------------------------------------- */

/* --- CSS Custom Properties --- */
:root {
  --bg-deep:        #050008;
  --bg-dark:        #0d0010;
  --bg-mid:         #120015;
  --bg-card:        #1a001e;
  --bg-glass:       rgba(20, 0, 25, 0.7);

  --primary:        #8b0000;
  --primary-light:  #b20000;
  --secondary:      #4a0080;
  --secondary-light:#6200aa;
  --accent:         #c9273f;
  --accent-light:   #e63950;
  --gold:           #c9a227;
  --gold-light:     #e8bf47;
  --rose:           #8b1a4a;
  --rose-light:     #c42870;

  --text:           #e8d5e8;
  --text-muted:     #9e7da8;
  --text-dim:       #5a3a6a;
  --white:          #f5e6f5;

  --border:         rgba(201, 162, 39, 0.2);
  --border-glow:    rgba(201, 162, 39, 0.5);

  --glow-red:       rgba(139, 0, 0, 0.4);
  --glow-purple:    rgba(74, 0, 128, 0.4);
  --glow-gold:      rgba(201, 162, 39, 0.3);
  --glow-rose:      rgba(201, 39, 63, 0.4);

  --font-display:   'Cinzel Decorative', serif;
  --font-title:     'Cinzel', serif;
  --font-body:      'Cormorant Garamond', serif;
  --font-ui:        'Raleway', sans-serif;

  --radius:         4px;
  --radius-lg:      12px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad:    100px;
  --container:      1200px;
  --nav-h:          80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
  /* -- crisp text rendering -- */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font: inherit; }
ul { list-style: none; }
iframe { display: block; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --- Selection --- */
::selection { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------
   CUSTOM CURSOR
   -------------------------------------------------------------- */
.custom-cursor {
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
  mix-blend-mode: exclusion;
}
.custom-cursor.hovered {
  width: 40px; height: 40px;
  background: rgba(201, 39, 63, 0.15);
  border-color: var(--gold);
}
.custom-cursor-trail {
  width: 6px; height: 6px;
  background: var(--rose-light);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s;
  opacity: 0.6;
}

/* --------------------------------------------------------------
   LOADER
   -------------------------------------------------------------- */
.loader-overlay {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

/* Vinyl loader */
.loader-vinyl {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a001e 30%, #0d0010 50%, #050008 70%);
  border: 2px solid var(--gold);
  position: relative;
  animation: vinylSpin 1.5s linear infinite;
  box-shadow: 0 0 30px var(--glow-purple), 0 0 60px var(--glow-red);
}
.loader-vinyl::before {
  content: '';
  position: absolute; inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3);
}
.loader-vinyl::after {
  content: '';
  position: absolute; inset: 25px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.2);
}
.loader-vinyl-center {
  position: absolute; width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--glow-rose);
}
.loader-vinyl-arm {
  position: absolute;
  width: 50px; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  top: 20%; right: -15px;
  transform-origin: left center;
  transform: rotate(-30deg);
  border-radius: 2px;
}

/* Heart ring */
.loader-heart-ring {
  display: flex; gap: 12px;
}
.loader-heart-ring span {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: heartPulse 0.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--glow-rose);
}
.loader-heart-ring span:nth-child(1) { animation-delay: 0s; }
.loader-heart-ring span:nth-child(2) { animation-delay: 0.2s; background: var(--gold); box-shadow: 0 0 8px var(--glow-gold); }
.loader-heart-ring span:nth-child(3) { animation-delay: 0.4s; }
.loader-heart-ring span:nth-child(4) { animation-delay: 0.6s; background: var(--gold); box-shadow: 0 0 8px var(--glow-gold); }

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 20px var(--glow-rose), 0 0 40px var(--glow-purple);
}
.loader-text span { color: var(--accent); }
.loader-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeFlicker 1.5s ease-in-out infinite;
}

/* --------------------------------------------------------------
   PARTICLE CANVAS
   -------------------------------------------------------------- */
#particleCanvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* --------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 0, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition-fast);
}
.nav-logo:hover { filter: brightness(1.2); }
.nav-logo-dj { color: var(--text-muted); font-size: 0.9em; }
.nav-logo-name { color: var(--white); }
.nav-logo-heart {
  color: var(--accent);
  font-size: 0.7em;
  animation: heartBeat 2s ease-in-out infinite;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a:hover::after { color: var(--white); width: 100%; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
  border: 1px solid transparent !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 0 15px var(--glow-rose);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: transparent !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 25px var(--glow-rose) !important;
}

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------
   HERO
   -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 0, 128, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(74, 0, 128, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,0,8,0.8) 100%);
}

.hero-ornament-top {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  z-index: 4; padding: 0 20px;
  opacity: 0.7;
}
.ornament-svg { width: 100%; height: 60px; }

.hero-content {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  gap: 6rem;
  padding: calc(var(--nav-h) + 60px) 2rem 80px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

/* Vinyl */
.hero-vinyl-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-vinyl {
  width: 280px; height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #2a002e 0%, #1a001e 30%),
    repeating-conic-gradient(#0d0010 0deg, #050008 1deg, #0d0010 2deg);
  position: relative;
  animation: vinylSpin 8s linear infinite;
  box-shadow:
    0 0 40px var(--glow-purple),
    0 0 80px var(--glow-red),
    inset 0 0 20px rgba(0,0,0,0.8);
  border: 2px solid rgba(201,162,39,0.3);
  cursor: pointer;
  transition: var(--transition-slow);
}
.hero-vinyl:hover { animation-play-state: paused; transform: scale(1.05); }
.vinyl-grooves {
  position: absolute; inset: 15px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0px, transparent 6px,
      rgba(201,162,39,0.06) 6px, rgba(201,162,39,0.06) 7px
    );
}
.vinyl-label {
  position: absolute; width: 90px; height: 90px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 60%, #330000 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.6rem;
  letter-spacing: 2px; color: #fff;
  box-shadow: 0 0 20px var(--glow-rose);
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  gap: 2px;
}
.vinyl-heart { color: var(--gold); font-size: 1.2em; }
.vinyl-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 45%, rgba(139,0,0,0.15) 70%, transparent 90%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Hero text */
.hero-text-block {
  flex: 1; max-width: 600px;
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-pre-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-rose { font-size: 1rem; filter: drop-shadow(0 0 6px rgba(201,39,63,0.8)); }

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  display: flex; align-items: flex-start; gap: 20px;
}
.hero-title-dj {
  font-size: 3rem;
  color: var(--text-muted);
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 8px;
  text-shadow: 0 0 20px var(--glow-purple);
}
.hero-title-name {
  font-size: 7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 30%, #fff 50%, var(--gold) 70%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.4));
  line-height: 0.9;
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 30%, #fff 50%, var(--gold) 70%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitchTop 4s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translateX(-2px);
}
.glitch::after {
  animation: glitchBot 4s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translateX(2px);
}

/* Hero divider */
.hero-divider {
  display: flex; align-items: center; gap: 12px;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider .divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider-heart { color: var(--accent); font-size: 0.9rem; animation: heartBeat 2s infinite; }
.divider-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
}

/* EQ bars */
.eq-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 30px;
}
.eq-bars span {
  display: block; width: 4px;
  background: linear-gradient(to top, var(--accent), var(--gold));
  border-radius: 2px;
  animation: eqBar 0.8s ease-in-out infinite alternate;
  box-shadow: 0 0 6px var(--glow-rose);
}
.eq-bars span:nth-child(1)  { height: 40%; animation-delay: 0.0s; }
.eq-bars span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.eq-bars span:nth-child(3)  { height: 55%; animation-delay: 0.2s; }
.eq-bars span:nth-child(4)  { height: 85%; animation-delay: 0.05s; }
.eq-bars span:nth-child(5)  { height: 60%; animation-delay: 0.3s; }
.eq-bars span:nth-child(6)  { height: 95%; animation-delay: 0.15s; }
.eq-bars span:nth-child(7)  { height: 75%; animation-delay: 0.35s; }
.eq-bars span:nth-child(8)  { height: 50%; animation-delay: 0.0s; }
.eq-bars span:nth-child(9)  { height: 100%;animation-delay: 0.25s; }
.eq-bars span:nth-child(10) { height: 65%; animation-delay: 0.1s; }
.eq-bars span:nth-child(11) { height: 80%; animation-delay: 0.4s; }
.eq-bars span:nth-child(12) { height: 45%; animation-delay: 0.2s; }
.eq-bars span:nth-child(13) { height: 90%; animation-delay: 0.05s; }
.eq-bars span:nth-child(14) { height: 60%; animation-delay: 0.3s; }
.eq-bars span:nth-child(15) { height: 40%; animation-delay: 0.15s; }

/* Hero CTAs */
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Social icons */
.hero-socials {
  display: flex; gap: 1rem;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px var(--glow-rose);
  transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 5;
  animation: floatUpDown 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid var(--text-dim);
  border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

/* --------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--glow-rose), 0 0 0 0 var(--accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-rose), 0 0 30px var(--glow-rose);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 0 var(--glow-gold);
}
.btn-outline:hover {
  background: rgba(201,162,39,0.1);
  box-shadow: 0 0 20px var(--glow-gold);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px var(--glow-rose);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(253,29,29,0.3);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253,29,29,0.5);
}

.btn-full { width: 100%; justify-content: center; }

.btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover .btn-glow { opacity: 1; }

/* --------------------------------------------------------------
   SECTIONS (shared)
   -------------------------------------------------------------- */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  z-index: 2;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.012'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.section-pre {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.section-title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 1rem auto 0;
  max-width: 200px;
}
.section-divider span {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-glow));
}
.section-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--border-glow));
}
.section-divider i { color: var(--gold); font-size: 0.8rem; }
.section-desc {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.ig-handle {
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 6px;
}
.ig-handle:hover { color: var(--accent-light); }
.ig-handle i { color: #fd1d1d; }

/* --------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------- */
.about {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}

/* Photo */
.about-photo-wrap { position: relative; }
.about-photo-frame {
  position: relative;
  border: 1px solid var(--border);
  padding: 12px;
  background: var(--bg-card);
  overflow: hidden;
  min-height: 450px;
  display: flex; align-items: stretch;
}
.about-photo-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,0,128,0.15) 0%, transparent 50%, rgba(139,0,0,0.15) 100%);
  pointer-events: none; z-index: 1;
}

/* Gothic corner decorations */
.about-photo-corner, .video-corner, .form-corner {
  position: absolute; width: 20px; height: 20px; z-index: 2;
}
.about-photo-corner::before, .about-photo-corner::after,
.video-corner::before, .video-corner::after,
.form-corner::before, .form-corner::after {
  content: '';
  position: absolute; background: var(--gold);
}
.about-photo-corner::before, .video-corner::before, .form-corner::before {
  width: 100%; height: 2px; top: 0; left: 0;
}
.about-photo-corner::after, .video-corner::after, .form-corner::after {
  width: 2px; height: 100%; top: 0; left: 0;
}
.tl { top: 0; left: 0; }
.tr { top: 0; right: 0; transform: rotate(90deg); }
.bl { bottom: 0; left: 0; transform: rotate(-90deg); }
.br { bottom: 0; right: 0; transform: rotate(180deg); }

.about-photo {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.9);
  transition: var(--transition-slow);
  position: relative; z-index: 0;
}
.about-photo-frame:hover .about-photo { transform: scale(1.03); filter: contrast(1.1) saturate(1); }
.expandable-image {
  cursor: zoom-in;
}

.about-photo-placeholder {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; width: 100%; min-height: 450px;
  color: var(--text-dim);
  position: absolute; inset: 0; z-index: 0;
}
.photo-placeholder-active .about-photo { display: none; }
.photo-placeholder-active .about-photo-placeholder { display: flex; }
.about-photo-placeholder i { font-size: 3rem; color: var(--text-dim); }
.about-photo-placeholder p { font-family: var(--font-title); font-size: 1.2rem; color: var(--text-muted); }
.about-photo-placeholder span { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 2px; }

.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none; z-index: 1;
}

.about-photo-badge {
  position: absolute; top: -15px; right: -15px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 20px var(--glow-rose);
  z-index: 3;
}
.about-photo-badge i { color: #fff; font-size: 1rem; }
.about-photo-badge span { font-family: var(--font-display); font-size: 0.5rem; letter-spacing: 2px; color: rgba(255,255,255,0.8); }

/* About text */
.about-text-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.about-quote {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(201,39,63,0.05);
  position: relative;
}
.about-quote i { color: var(--accent); font-size: 1.5rem; opacity: 0.4; margin-bottom: 0.5rem; display: block; }
.about-quote p { font-style: italic; font-size: 1.2rem; color: var(--gold); }

.about-bio p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}
.about-bio p strong { color: var(--white); }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.about-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --------------------------------------------------------------
   VIDEOS
   -------------------------------------------------------------- */
.videos {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}
.videos-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(74,0,128,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(139,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  position: relative; z-index: 1;
}

.video-card {
  display: flex; flex-direction: column; gap: 1rem;
}
.video-card--featured {
  grid-column: 1;
  grid-row: 1;
}

.video-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.video-frame-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-info { padding: 0 4px; }
.video-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 0.5rem;
}
.video-badge i { font-size: 0.6rem; }
.video-info h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.video-info p { color: var(--text-muted); font-size: 0.95rem; }

.videos-more { text-align: center; margin-top: 3rem; position: relative; z-index: 1; }

/* --------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------- */
.gallery {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative; z-index: 1;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  group: true;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.8) contrast(1.05);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.1);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,0,8,0.9) 0%, rgba(74,0,128,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-expand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-item-caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text-dim);
  min-height: 200px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  transition: var(--transition);
}
.gallery-placeholder:hover { background: linear-gradient(135deg, var(--bg-dark), rgba(74,0,128,0.1)); }
.gallery-placeholder i { font-size: 2rem; color: var(--text-dim); }
.gallery-placeholder p {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 1px; text-align: center;
  line-height: 1.6; color: var(--text-dim);
}

.gallery-cta { text-align: center; margin-top: 3rem; position: relative; z-index: 1; }

/* --------------------------------------------------------------
   REELS
   -------------------------------------------------------------- */
.reels {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 50%, var(--bg-mid) 100%);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.reels-empty {
  min-height: 340px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  color: var(--text-muted);
}

.reels-empty i {
  font-size: 2rem;
  color: var(--accent);
}

.reels-empty p {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--white);
}

.reels-empty span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.reel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 0, 25, 0.78), rgba(5, 0, 8, 0.96));
  aspect-ratio: 9 / 16;
  min-height: 360px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.reel-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.88) contrast(1.04);
}

.reel-card:hover .reel-preview {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.08);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(5,0,8,0.92) 0%, rgba(5,0,8,0.22) 45%, transparent 100%);
  pointer-events: none;
}

.reel-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(9, 0, 13, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.24);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.reel-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reel-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
}

.reel-subtitle {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reel-play {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 0, 13, 0.76);
  border: 1px solid rgba(201, 162, 39, 0.24);
  color: var(--white);
}

/* --------------------------------------------------------------
   EVENTS
   -------------------------------------------------------------- */
.events {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}
.events-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(74,0,128,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.events-content { position: relative; z-index: 1; }

.no-events {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin: 0 auto;
}
.no-events-icon {
  font-size: 3rem; margin-bottom: 1rem;
  color: var(--text-dim);
  animation: floatUpDown 3s ease-in-out infinite;
}
.no-events p { font-family: var(--font-title); font-size: 1.1rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.no-events span { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 2px; color: var(--text-dim); }
.no-events-socials { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.no-events-socials a { color: var(--text-dim); font-size: 1.2rem; transition: var(--transition-fast); }
.no-events-socials a:hover { color: var(--accent); transform: scale(1.2); }

/* Event card (for when events are added) */
.event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.event-card--with-poster {
  grid-template-columns: 120px 120px 1fr auto;
}
.event-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--glow-rose);
  transform: translateX(4px);
}
.event-poster-wrap {
  width: 120px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201,39,63,0.15), rgba(5,0,8,0.9));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.event-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.event-card:hover .event-poster {
  transform: scale(1.04);
}
.event-date-block { text-align: center; }
.event-date-day { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.event-date-month { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.event-info { min-width: 0; }
.event-info h3 { font-family: var(--font-title); font-size: 1.2rem; color: var(--white); }
.event-info p { color: var(--text-muted); font-size: 0.9rem; }
.event-note {
  display: inline-block;
  margin-top: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.event-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.event-entry-tag {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* Expandable image lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.image-lightbox[hidden] {
  display: none;
}
.image-lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 6, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(10, 0, 14, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.image-lightbox__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(10, 0, 14, 0.78);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.image-lightbox__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.25);
}

.image-lightbox__video {
  width: 100%;
  max-height: calc(100vh - 9rem);
  background: rgba(0, 0, 0, 0.35);
}

.image-lightbox__caption {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  text-align: center;
}
body.lightbox-open {
  overflow: hidden;
}

/* --------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}
.contact-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(139,0,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(74,0,128,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  position: relative; z-index: 1;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--glow-rose);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 0 15px var(--glow-rose);
}
.contact-card-text h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.contact-card-text a {
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.contact-card-text a:hover { color: var(--accent); }

.contact-socials { display: flex; gap: 1rem; margin-top: 4px; }
.contact-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: var(--transition-fast);
}
.contact-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 10px var(--glow-rose);
  transform: scale(1.1);
}

/* Rose decoration */
.contact-rose { display: flex; justify-content: center; padding: 1rem 0; }
.rose-decoration { position: relative; width: 80px; height: 80px; }
.rose-heart {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; color: var(--accent);
  z-index: 1;
  animation: heartBeat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--glow-rose));
  line-height: 1;
}
.rose-petals {
  position: absolute; inset: 0;
  animation: roseRotate 8s linear infinite;
}
.rose-petals span {
  position: absolute; width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%; left: 50%;
  box-shadow: 0 0 6px var(--glow-gold);
}
.rose-petals span:nth-child(1) { transform: translate(-50%, -50%) translate(35px, 0); }
.rose-petals span:nth-child(2) { transform: translate(-50%, -50%) translate(0, 35px); }
.rose-petals span:nth-child(3) { transform: translate(-50%, -50%) translate(-35px, 0); }
.rose-petals span:nth-child(4) { transform: translate(-50%, -50%) translate(0, -35px); }
.rose-petals span:nth-child(5) { transform: translate(-50%, -50%) translate(25px, 25px); width: 4px; height: 4px; background: var(--accent); }
.rose-petals span:nth-child(6) { transform: translate(-50%, -50%) translate(-25px, 25px); width: 4px; height: 4px; background: var(--accent); }
.rose-petals span:nth-child(7) { transform: translate(-50%, -50%) translate(25px, -25px); width: 4px; height: 4px; background: var(--accent); }
.rose-petals span:nth-child(8) { transform: translate(-50%, -50%) translate(-25px, -25px); width: 4px; height: 4px; background: var(--accent); }

/* Contact Form */
.contact-form-wrap { }
.contact-form {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(15px);
  display: flex; flex-direction: column; gap: 1.2rem;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim);
}
.form-input-wrap {
  position: relative;
  display: flex; align-items: stretch;
}
.form-input-wrap i {
  position: absolute; left: 14px;
  top: 50%; transform: translateY(-50%);
  color: var(--text-dim); font-size: 0.85rem;
  pointer-events: none; z-index: 1;
}
.textarea-wrap i { top: 18px; transform: none; }
.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(13,0,16,0.8);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input-wrap select {
  cursor: pointer;
  padding-right: 40px;
}
.form-input-wrap textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-input-wrap input:focus,
.form-input-wrap select:focus,
.form-input-wrap textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--glow-rose);
  background: rgba(20,0,25,0.9);
}
.form-input-wrap input::placeholder,
.form-input-wrap textarea::placeholder { color: var(--text-dim); }
.form-input-wrap select option { background: var(--bg-dark); color: var(--text); }

.form-success {
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 1rem;
  background: rgba(201,39,63,0.1);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-family: var(--font-title); font-size: 1rem;
}
.form-success.show { display: flex; }
.form-success i { animation: heartBeat 1s infinite; }

.form-note {
  text-align: center;
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 1px; color: var(--text-dim);
}
.form-note a { color: var(--text-muted); transition: var(--transition-fast); }
.form-note a:hover { color: var(--accent); }

/* --------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative; z-index: 2;
}
.footer-glow-top {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--gold), var(--accent), transparent);
  box-shadow: 0 0 20px var(--glow-rose);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 4px; display: flex; align-items: center; gap: 6px;
  margin-bottom: 1rem;
}
.footer-logo-dj { color: var(--text-muted); font-size: 0.7em; }
.footer-logo-name { color: var(--white); }
.footer-logo-heart { color: var(--accent); font-size: 0.6em; animation: heartBeat 2s infinite; }
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer-sub {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-nav h5, .footer-contact-info h5 {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.footer-nav ul li { margin-bottom: 0.6rem; }
.footer-nav a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a::before {
  content: '�';
  color: var(--accent);
  font-size: 0.7em;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-fast);
}
.footer-nav a:hover { color: var(--white); padding-left: 6px; }
.footer-nav a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-info p {
  font-family: var(--font-ui);
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact-info p i { color: var(--accent); width: 16px; flex-shrink: 0; }
.footer-contact-info a { transition: var(--transition-fast); }
.footer-contact-info a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 12px var(--glow-rose); transform: translateY(-3px); }

.footer-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 1.5rem; }
.footer-divider span {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,39,0.25));
}
.footer-divider span:last-child {
  background: linear-gradient(to left, transparent, rgba(201,162,39,0.25));
}
.footer-divider i { color: var(--accent); font-size: 0.85rem; }
.footer-copy {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  line-height: 2;
}
.footer-copy strong { color: var(--white); font-weight: 600; letter-spacing: 2px; }
.footer-made-by {
  color: #ff5fa2;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.footer-made-by:hover {
  color: #ff87ba;
  text-shadow: 0 0 12px rgba(255, 95, 162, 0.45);
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--glow-rose);
  z-index: 500;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--glow-rose); }

/* --------------------------------------------------------------
   ANIMATIONS (Keyframes)
   -------------------------------------------------------------- */
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.2); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.15); }
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.5); opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}
@keyframes eqBar {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-8px) translateX(-50%); }
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes glitchTop {
  0%, 90%, 100% { opacity: 0; transform: translateX(-2px); }
  91%, 92%       { opacity: 0.5; transform: translateX(3px); clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); }
  93%, 94%       { opacity: 0.3; transform: translateX(-3px); }
}
@keyframes glitchBot {
  0%, 88%, 100% { opacity: 0; transform: translateX(2px); }
  89%, 90%       { opacity: 0.4; transform: translateX(-3px); clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
  91%, 92%       { opacity: 0.2; transform: translateX(3px); }
}
@keyframes fadeFlicker {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes roseRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes aos-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --------------------------------------------------------------
   MOBILE / RESPONSIVE
   -------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .hero-content { gap: 3rem; }
  .hero-vinyl { width: 220px; height: 220px; }
  .hero-title-name { font-size: 5.5rem; }
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .video-card--featured { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-trail { display: none; }

  /* Mobile nav */
  body.menu-open { position: fixed; width: 100%; } /* iOS Safari scroll lock */
  .nav-links {
    position: fixed; inset: 0; top: var(--nav-h);
    background: rgba(5, 0, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
    transform: translateY(-110%);
    /* delay visibility until slide-up finishes (0.4s); open immediately */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }
  .nav-links a { font-size: 1.1rem; letter-spacing: 3px; color: var(--text); padding: 0.5rem 1.5rem; }
  .nav-cta { padding: 14px 32px !important; }
  .nav-burger { display: flex; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  button { cursor: pointer; }

  /* Hero */
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-vinyl { width: 180px; height: 180px; }
  .hero-vinyl-wrap { display: none; }
  .hero-title { justify-content: center; }
  .hero-title-dj { font-size: 2rem; }
  .hero-title-name { font-size: 4rem; }
  .hero-pre-title { justify-content: center; }
  .hero-divider { max-width: 250px; margin: 0 auto; }
  .hero-cta-wrap { justify-content: center; }
  .hero-socials { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-frame { min-height: 300px; }
  .about-photo { height: 300px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  /* Section titles */
  .section-title { font-size: 2rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reels */
  .reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Events */
  .event-card,
  .event-card--with-poster {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .event-poster-wrap {
    width: 100%;
    max-width: 260px;
  }
  .event-date-block {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
  }
  .event-action {
    width: 100%;
    justify-content: flex-start;
  }
  .image-lightbox {
    padding: 1rem;
  }
  .image-lightbox__dialog {
    padding: 0.9rem;
  }
  .image-lightbox__img {
    max-height: calc(100vh - 7rem);
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-title-name { font-size: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.75rem; }
}

/* --------------------------------------------------------------
   YT AUDIO BAR � Slim Gothic Controller
   -------------------------------------------------------------- */
.yt-bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 0, 12, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 40px;
  padding: 9px 16px;
  z-index: 600;
  box-shadow: 0 6px 32px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,39,63,0.1);
  animation: playerSlideIn 0.4s cubic-bezier(0.4,0,0.2,1);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.yt-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--gold), var(--accent), transparent);
  border-radius: 40px 40px 0 0;
}
.yt-bar:hover {
  border-color: rgba(201,39,63,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.75), 0 0 18px var(--glow-rose);
}
.yt-bar__note {
  color: var(--accent);
  font-size: 0.78rem;
  animation: heartBeat 2.5s infinite;
  flex-shrink: 0;
}
.yt-bar__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.yt-bar__btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  flex-shrink: 0;
}
.yt-bar__btn:hover {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255,255,255,0.06);
}
#ytBarPlay {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 12px var(--glow-rose);
}
#ytBarPlay:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 20px var(--glow-rose);
  transform: scale(1.08);
  color: #fff;
}
.yt-bar__vol {
  width: 70px;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.yt-bar__vol:hover { height: 4px; }
.yt-bar__vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 6px var(--glow-rose);
}
.yt-bar__vol::-moz-range-thumb {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}
/* Responsive */
@media (max-width: 768px) {
  .yt-bar { bottom: 16px; left: 12px; right: 12px; border-radius: 30px; padding: 8px 14px; }
  .yt-bar__title { max-width: 80px; }
  .yt-bar__vol { width: 50px; }
}


/* back-to-top stays at default position */

@keyframes playerSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

