/* ==========================================
   LAULEE — DJ Website · style.css
   ========================================== */

/* ── Variables ── */
:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface2:  #181818;
  --border:    #262626;
  --grey-dk:   #404040;
  --grey:      #6a6a6a;
  --grey-lt:   #a8a8a8;
  --white:     #efefef;
  --pure:      #ffffff;

  --font-disp: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --nav-h: 72px;
  --max-w: 1180px;
  --pad:   clamp(20px, 5vw, 60px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  cursor: none;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; cursor: none; }
ul { list-style: none; }

/* ── Typography helpers ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 36px;
}

.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey-lt);
  max-width: 540px;
  margin-bottom: 18px;
}

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

/* ── Section base ── */
.section { padding: clamp(80px, 12vw, 140px) 0; }
.section-dark { background: var(--surface); }


/* ════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--pure);
  border-radius: 50%;
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  transition: width 0.22s ease, height 0.22s ease,
              border-color 0.22s ease, opacity 0.3s;
}

.cursor-ring.hovering {
  width: 50px;
  height: 50px;
  border-color: rgba(255,255,255,0.85);
}


/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s, border-bottom 0.4s;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.55; }

.nav-links { display: flex; gap: 38px; }

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.28s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease;
}


/* ════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 11vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--grey-lt);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #080808;
  overflow: hidden;
}

/* Animated fallback shown when video is hidden (Low Power Mode etc.) */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: heroPulse 9s ease-in-out infinite alternate;
}
.hero-bg::before {
  width: 70vw; height: 70vw;
  top: -20%; left: -15%;
  background: radial-gradient(circle, #1a0a3a 0%, transparent 70%);
}
.hero-bg::after {
  width: 55vw; height: 55vw;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, #0a1a2e 0%, transparent 70%);
  animation-delay: -4s;
  animation-direction: alternate-reverse;
}

@keyframes heroPulse {
  0%   { transform: scale(1)   translate(0, 0); }
  50%  { transform: scale(1.2) translate(4%, 6%); }
  100% { transform: scale(0.95) translate(-3%, -4%); }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: grayscale(100%);
  will-change: transform;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.30) 30%,
    rgba(8,8,8,0.50) 65%,
    rgba(8,8,8,0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
}

.hero-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(5.5rem, 20vw, 20rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: var(--pure);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-genres {
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  margin-top: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
  animation: scrollAnim 1.8s ease-in-out infinite;
  transform-origin: top;
}


/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.28);
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 17px 46px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.about-photo img {
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.about-photo:hover img { transform: scale(1.04); }

.photo-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
  transition: border-color 0.3s;
}
.about-photo:hover .photo-border { border-color: var(--grey-dk); }

.about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-disp);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.stat-div {
  width: 1px;
  height: 38px;
  background: var(--border);
}


/* ════════════════════════════════════════
   RESIDENCE
   ════════════════════════════════════════ */
.residence-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-top: 8px;
  width: 100%;
}

.residence-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.residence-logo:hover img { opacity: 1; }


/* ════════════════════════════════════════
   SLIDESHOW
   ════════════════════════════════════════ */
.slideshow {
  width: 100%;
  height: 76vh;
  min-height: 420px;
  overflow: hidden;
  margin-top: 48px;
  user-select: none;
}

.slide-track {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.slide-track::-webkit-scrollbar { display: none; }
.slide-track.dragging { cursor: grabbing; }

.slide {
  flex-shrink: 0;
  width: clamp(260px, 70vw, 920px);
  height: 68vh;
  min-height: 340px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
  pointer-events: none;
}


/* ════════════════════════════════════════
   MUSIC / PLATFORMS
   ════════════════════════════════════════ */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.5vw, 20px);
  margin-top: 48px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface2);
  opacity: 0;
  transition: opacity 0.3s;
}
.platform-card:hover { border-color: var(--grey-dk); }
.platform-card:hover::before { opacity: 1; }

.platform-icon {
  position: relative;
  z-index: 1;
  color: var(--grey);
  flex-shrink: 0;
  transition: color 0.3s;
}
.platform-card:hover .platform-icon { color: var(--white); }

.platform-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.platform-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.platform-text p {
  font-size: 13px;
  color: var(--grey);
  font-weight: 300;
}

.platform-arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--grey-dk);
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.platform-card:hover .platform-arrow {
  color: var(--white);
  transform: translateX(5px);
}


/* ════════════════════════════════════════
   PRESS
   ════════════════════════════════════════ */
.press-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.press-text { flex: 1; min-width: 260px; }
.press-cta { flex-shrink: 0; }


/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 8vw, 100px);
  margin-top: 48px;
}

.socials {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-lt);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.social-row:first-child { border-top: 1px solid var(--border); }
.social-row svg { flex-shrink: 0; }
.social-row:hover { color: var(--white); }

/* Form */
.form-row { margin-bottom: 14px; }

.form-field {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  appearance: none;
  transition: border-color 0.2s;
}
.form-field::placeholder { color: var(--grey-dk); }
.form-field:focus { border-color: var(--grey); }

.form-select {
  color: var(--grey-dk);
  background: var(--surface);
}
.form-select option { color: var(--white); background: var(--surface); }

.form-textarea { resize: vertical; min-height: 120px; }


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: var(--grey-dk);
  width: 100%;
}


/* ════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pure);
  color: var(--bg);
  border: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--grey-lt);
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  35%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .slideshow { height: 60vh; }
  .slide { width: 82vw; height: 52vh; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    aspect-ratio: 4/3;
    order: -1;
  }

  .platform-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-copy  { text-align: center; }

  .press-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .slideshow { height: 50vh; }
  .slide-btn { width: 36px; height: 36px; font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
