:root {
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.4);
  --gradient: linear-gradient(135deg, #e63946, #ff6b6b);
}

* {
  font-family: 'Inter', sans-serif;
}

/* ── Navbar ── */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.navbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 1.6rem;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: #111 url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  animation: fadeUp 1.2s ease-out;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 8px;
  line-height: 1;
  text-shadow: 0 0 60px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  margin: 1rem auto;
  animation: expandLine 1.5s ease-out 0.5s both;
}

/* ── Buttons ── */
.btn-book {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn-book:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-book:hover::before {
  opacity: 1;
}

/* ── Section titles ── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient);
  margin-top: 8px;
}

.text-center .section-title::after {
  margin-inline: auto;
}

/* ── DJ photo ── */
.dj-photo {
  max-width: 320px;
  border: 4px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transition: transform 0.4s, box-shadow 0.4s;
}

.dj-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px var(--accent-glow);
}

/* ── Mix cards ── */
.mix-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mix-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ── Social icons ── */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 60px; }
}

/* ── Smooth scroll & anchor offset ── */
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 70px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
