/* ========================================
   Blasphemy 2026 – Modern Festival Theme
   ======================================== */

:root {
  /* Core palette – fiery neon inspired by the festival logo */
  --bg-color: #030303;
  --bg-secondary: #0a0a0a;
  --text-color: #ffffff;
  --text-muted: #999;
  --accent-primary: #ff4d00; /* blazing orange */
  --accent-secondary: #ffaa00; /* warm amber */
  --accent-tertiary: #ffd600; /* bright gold */
  --accent-glow: rgba(255, 77, 0, 0.35);
  --dark-card: #0d0d0d;
  --card-border: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: "Montserrat", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-offset {
  padding-top: 140px;
}

/* ── Header / Navbar ──────────────────── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition:
    background var(--transition-smooth),
    padding var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(3, 3, 3, 0.92);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-secondary);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.logo-text {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent-secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ── Hero Section ─────────────────────── */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-color);
}

/* Ambient glow behind hero */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(255, 77, 0, 0.12) 0%,
    rgba(255, 170, 0, 0.05) 40%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Subtle grid overlay for texture */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on top of video */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 3, 3, 0.5) 0%,
    rgba(3, 3, 3, 0.3) 50%,
    rgba(3, 3, 3, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  z-index: 3;
  position: relative;
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

h1.glitch {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  letter-spacing: 4px;
  text-shadow:
    3px 3px 0px var(--accent-primary),
    -3px -3px 0px var(--accent-secondary);
  animation: glitch 2.5s ease-in-out infinite alternate;
}

@keyframes glitch {
  0%,
  100% {
    text-shadow:
      3px 3px 0 var(--accent-primary),
      -3px -3px 0 var(--accent-secondary);
  }
  25% {
    text-shadow:
      -3px 2px 0 var(--accent-tertiary),
      3px -2px 0 var(--accent-primary);
  }
  50% {
    text-shadow:
      2px -3px 0 var(--accent-secondary),
      -2px 3px 0 var(--accent-tertiary);
  }
  75% {
    text-shadow:
      -2px -2px 0 var(--accent-primary),
      2px 2px 0 var(--accent-secondary);
  }
}

.subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  margin: 24px 0 44px;
  letter-spacing: 4px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Buttons ──────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow:
    0 0 30px var(--accent-glow),
    0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: inherit;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 50px var(--accent-glow),
    0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--accent-secondary);
  color: var(--accent-secondary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: inherit;
  z-index: -1;
}

.btn-secondary:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary:hover::before {
  opacity: 1;
}

/* ── Countdown ────────────────────────── */
#countdown {
  padding: 70px 0;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

#countdown h2 {
  margin-bottom: 36px;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--text-muted);
  font-weight: 700;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.time-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  min-width: 110px;
  backdrop-filter: blur(8px);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.time-box:hover {
  border-color: rgba(255, 170, 0, 0.2);
  box-shadow: 0 4px 20px rgba(255, 170, 0, 0.08);
}

.time-box span {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.time-box p {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Section Titles ───────────────────── */
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  margin: 14px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ── Lineup ───────────────────────────── */
#lineup {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.artist-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  will-change: transform;
  transform: translateZ(0);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

/* Gradient border glow on hover */
.artist-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.artist-card:hover {
  transform: translate3d(0, -12px, 0);
  border-color: transparent;
  box-shadow:
    0 20px 50px rgba(255, 77, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

.artist-card:hover::before {
  opacity: 1;
}

.artist-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: none;
  transition: transform var(--transition-smooth);
  flex: 1 1 auto;
  min-height: 0;
}

.artist-card:hover img {
  transform: scale(1.05);
}

.artist-card.headliner img {
  height: 340px;
}

.artist-card:not(.headliner) img {
  height: 220px;
}

.artist-card.logo-card img {
  object-fit: contain;
  padding: 32px;
  background-color: #000;
}

.artist-card.catastrofy-card img {
  height: 280px;
  padding: 18px 24px;
}

.artist-card.catastrofy-card h3 {
  margin: 8px 0 10px;
}

.artist-card-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  height: 70px;
  text-align: center;
}

.artist-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.artist-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.headliner {
  grid-column: span 2;
}

/* Headliner badge */
.headliner::after {
  content: "HEADLINER";
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

/* ── Tickets ──────────────────────────── */
#tickets {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
}

#tickets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-secondary),
    transparent
  );
}

.tickets-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ticket-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 44px 32px 36px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: 320px;
  position: relative;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.ticket-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 170, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ticket-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.ticket-card .price {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1;
}

.ticket-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.ticket-card li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.ticket-card li::before {
  content: "✓";
  color: var(--accent-tertiary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.btn-ticket {
  display: block;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid var(--accent-secondary);
  color: var(--accent-secondary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.btn-ticket:hover {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px var(--accent-glow);
  transform: translateY(-2px);
}

/* VIP special styling */
.vip {
  border: 1px solid rgba(255, 77, 0, 0.25);
  background: linear-gradient(
    160deg,
    rgba(255, 77, 0, 0.05) 0%,
    var(--glass-bg) 50%,
    rgba(255, 170, 0, 0.03) 100%
  );
  transform: scale(1.04);
}

.vip:hover {
  transform: scale(1.04) translateY(-10px);
}

.vip h3 {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip .price {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-btn {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.vip-btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px var(--accent-glow);
}

.badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #fff;
  padding: 6px 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* ── Info Section ─────────────────────── */
#info {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.info-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.info-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 0, 0.15);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.info-item h3 {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Reveal Animation ─────────────────── */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger delays */
.reveal-active:nth-child(1) {
  transition-delay: 0s;
}
.reveal-active:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-active:nth-child(3) {
  transition-delay: 0.08s;
}
.reveal-active:nth-child(4) {
  transition-delay: 0.16s;
}
.reveal-active:nth-child(5) {
  transition-delay: 0.24s;
}
.reveal-active:nth-child(6) {
  transition-delay: 0.32s;
}

/* ── Contact Section ───────────────────── */
#contact {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-secondary),
    transparent
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 28px 36px;
  text-align: center;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::after {
  opacity: 1;
}

.contact-icon {
  margin-bottom: 20px;
  color: var(--accent-secondary);
  display: inline-flex;
  padding: 16px;
  background: rgba(255, 170, 0, 0.06);
  border-radius: 50%;
  border: 1px solid rgba(255, 170, 0, 0.1);
  transition: all var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background: rgba(255, 170, 0, 0.1);
  border-color: rgba(255, 170, 0, 0.2);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 170, 0, 0.1);
}

.contact-card h3 {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card p a {
  color: var(--text-color);
  transition: color var(--transition-fast);
}

.contact-card p a:hover {
  color: var(--accent-secondary);
}

.contact-sub {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  margin-top: 6px;
}

.contact-socials {
  margin-top: 10px;
}

.contact-socials h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all var(--transition-smooth);
}

.social-link:hover {
  color: #fff;
  border-color: var(--accent-primary);
  background: linear-gradient(
    135deg,
    rgba(255, 77, 0, 0.15),
    rgba(255, 170, 0, 0.1)
  );
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* ── Footer ───────────────────────────── */
footer {
  background: #000;
  padding: 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--accent-secondary);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--text-muted);
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
  display: inline-flex;
}

.footer-socials a:hover {
  color: var(--accent-secondary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* ── Custom Scrollbar ─────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 170, 0, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 170, 0, 0.5);
}

/* ── Mobile Nav ───────────────────────── */
.burger {
  display: none;
  cursor: pointer;
  z-index: 100;
}

.burger div {
  width: 26px;
  height: 2px;
  background-color: var(--text-color);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ── Language Switcher ─────────────────── */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0.5;
}

.lang-btn img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--accent-primary);
  background: rgba(255, 77, 0, 0.15);
  box-shadow: 0 0 12px var(--accent-glow);
}

.lang-btn:not(.active):hover {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Tablet ────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .headliner {
    grid-column: span 2;
  }

  .ticket-card {
    width: 280px;
    padding: 36px 24px 30px;
  }

  #lineup,
  #tickets,
  #info,
  #contact {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile ───────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 8px 0;
  }

  header .container {
    padding: 0 12px;
    gap: 12px;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
  }

  .logo-img {
    height: 28px;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Language switcher */
  .language-switcher {
    flex-shrink: 0;
    gap: 4px;
    order: 2;
  }

  .lang-btn {
    width: 28px;
    height: 28px;
  }

  .lang-btn img {
    width: 17px;
    height: 17px;
  }

  /* Nav wrapper */
  nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 3;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: rgba(3, 3, 3, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    padding: 80px 20px;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-links li {
    opacity: 0;
  }

  .burger {
    display: block;
    flex-shrink: 0;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  /* Hero */
  #hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
  }

  h1.glitch {
    font-size: clamp(2rem, 12vw, 3.5rem);
    letter-spacing: 2px;
    text-shadow:
      2px 2px 0px var(--accent-primary),
      -2px -2px 0px var(--accent-secondary);
  }

  .subtitle {
    font-size: clamp(0.75rem, 3vw, 1rem);
    letter-spacing: 2px;
    margin: 16px 0 32px;
    padding: 0 8px;
  }

  .btn-primary {
    padding: 14px 36px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  /* Countdown */
  #countdown {
    padding: 50px 0;
  }

  #countdown h2 {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .timer {
    gap: 12px;
  }

  .time-box {
    min-width: 70px;
    padding: 14px 12px;
  }

  .time-box span {
    font-size: 2rem;
  }

  .time-box p {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  /* Section defaults */
  #lineup,
  #tickets,
  #info,
  #contact {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin-bottom: 36px;
    letter-spacing: 2px;
  }

  .container {
    padding: 0 16px;
  }

  .page-offset {
    padding-top: 100px;
  }

  /* Lineup */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .headliner {
    grid-column: span 2;
  }

  .artist-card img {
    height: 180px;
  }

  .artist-card.headliner img {
    height: 220px;
  }

  .artist-card:not(.headliner) img {
    height: 160px;
  }

  .artist-card-info {
    padding: 8px 10px;
    height: 56px;
  }

  .artist-card h3 {
    font-size: 0.8rem;
  }

  .artist-card p {
    font-size: 0.65rem;
  }

  .headliner::after {
    font-size: 0.55rem;
    padding: 4px 10px;
    top: 10px;
    right: 10px;
  }

  .btn-secondary {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  /* Tickets */
  .tickets-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ticket-card {
    width: 100%;
    max-width: 360px;
    padding: 36px 24px 28px;
  }

  .ticket-card h3 {
    font-size: 1.3rem;
  }

  .ticket-card .price {
    font-size: 2.2rem;
  }

  .vip {
    transform: scale(1);
  }

  .vip:hover {
    transform: translateY(-10px);
  }

  /* Info */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-item {
    padding: 28px 20px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 32px 20px 28px;
  }

  .contact-socials {
    margin-top: 8px;
  }

  .social-link {
    width: 46px;
    height: 46px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-nav a {
    font-size: 0.7rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    padding: 14px 0;
  }

  .footer-bottom p {
    font-size: 0.65rem;
  }
}

/* ── Small Mobile (< 480px) ──────────── */
@media (max-width: 480px) {
  header .container {
    padding: 0 12px;
    gap: 12px;
  }

  .logo {
    gap: 8px;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .logo-img {
    height: 30px;
  }

  .lang-btn {
    width: 30px;
    height: 30px;
  }

  .lang-btn img {
    width: 18px;
    height: 18px;
  }

  .burger div {
    width: 24px;
    height: 2px;
    margin: 6px 0;
  }

  h1.glitch {
    font-size: clamp(1.8rem, 13vw, 3rem);
  }

  .subtitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .timer {
    gap: 8px;
  }

  .time-box {
    min-width: 60px;
    padding: 12px 8px;
  }

  .time-box span {
    font-size: 1.6rem;
  }

  .time-box p {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .artists-grid {
    gap: 10px;
  }

  .artist-card img {
    height: 150px;
  }

  .artist-card.headliner img {
    height: 200px;
  }

  .artist-card:not(.headliner) img {
    height: 140px;
  }

  .artist-card-info {
    padding: 6px 8px;
    height: 48px;
  }

  .artist-card h3 {
    font-size: 0.7rem;
  }

  .artist-card p {
    font-size: 0.6rem;
  }

  .ticket-card {
    max-width: 100%;
    padding: 32px 18px 24px;
  }
}

/* === HERO VIDEO POZADIE === */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

#hero #hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
