/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #080b14;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: #ff7a00; }

/* === NAVBAR === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.08em; color: #fff;
  text-shadow: 0 0 20px rgba(255,122,0,0.5);
  transition: color 0.2s;
}
.nav-logo:hover { color: #ff7a00; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: #ff7a00; }
.nav-social {
  display: flex; align-items: center; gap: 16px;
  padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-social a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-social a:hover { color: #ff7a00; }
.nav-social svg { width: 18px; height: 18px; display: block; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open 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; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #080b14 0%, #1a0b2e 40%, rgba(255,122,0,0.25) 80%, #080b14 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(255,122,0,0.18) 0%, transparent 70%);
}
.particles {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,122,0,0.5);
  animation: floatUp linear infinite;
  filter: blur(1px);
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-date {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.75); text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 1; letter-spacing: 0.04em; color: #fff;
  text-shadow: 0 0 60px rgba(255,122,0,0.55), 0 0 120px rgba(255,122,0,0.25);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,0.7); font-weight: 300;
  margin-bottom: 32px; max-width: 600px;
}

/* Countdown */
.countdown {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 40px;
}
.countdown-item { display: flex; flex-direction: column; align-items: center; }
.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ff7a00; line-height: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.countdown-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 36px;
  border-radius: 999px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: #ff7a00; color: #fff;
  box-shadow: 0 0 20px rgba(255,122,0,0.4);
}
.btn-primary:hover {
  background: #e06800;
  box-shadow: 0 0 40px rgba(255,122,0,0.7);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent; color: #ff7a00;
  border-color: #ff7a00;
}
.btn-outline-orange:hover {
  background: #ff7a00; color: #fff;
  box-shadow: 0 0 20px rgba(255,122,0,0.5);
  transform: translateY(-2px);
}
.btn.full { width: 100%; display: block; border-radius: 12px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.hero-social { display: flex; gap: 16px; }
.social-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.social-icon:hover {
  background: #ff7a00; border-color: #ff7a00; color: #fff;
  box-shadow: 0 0 20px rgba(255,122,0,0.5);
}
.social-icon svg { width: 20px; height: 20px; }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,122,0,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-alt { background: #0a0d1a; }
.bilete-section { background: #0a0d1a; position: relative; overflow: hidden; }
.bilete-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(255,122,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1; margin-bottom: 16px; color: #fff;
}
.section-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  max-width: 680px; margin: 0 auto; font-weight: 300;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 24px; text-align: center;
  transition: all 0.3s; cursor: default;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,122,0,0.3);
}
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,122,0,0.15); color: #ff7a00;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: rgba(255,122,0,0.3);
  box-shadow: 0 0 20px rgba(255,122,0,0.4);
  transform: scale(1.1);
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1rem; font-weight: 600; }

/* Experiences */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.exp-card {
  background: #0f1322;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
}
.exp-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,122,0,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.exp-card:hover::before { opacity: 1; }
.exp-card:hover { border-color: rgba(255,122,0,0.4); transform: translateY(-4px); }
.exp-num {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: rgba(255,122,0,0.3);
  line-height: 1; margin-bottom: 8px;
  transition: color 0.3s;
}
.exp-card:hover .exp-num { color: rgba(255,122,0,0.8); }
.exp-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; transition: color 0.3s; }
.exp-card:hover h3 { color: #ff7a00; }
.exp-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Lineup */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px; margin-bottom: 48px;
}
.lineup-card {
  background: #0a0d1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
}
.lineup-card.large { grid-column: span 2; aspect-ratio: 2/1; }
.lineup-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,122,0,0.35), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.lineup-card:hover::before { opacity: 1; }
.lineup-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; color: rgba(255,255,255,0.08);
  line-height: 1; transition: color 0.3s; z-index: 1;
}
.lineup-card:hover .lineup-q { color: rgba(255,122,0,0.5); }
.lineup-tag {
  margin-top: 12px; z-index: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 999px; padding: 4px 16px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.artist-cta {
  background: linear-gradient(135deg, #1a0b2e, #080b14);
  border: 1px solid rgba(255,122,0,0.3);
  border-radius: 24px; padding: 56px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.artist-cta::after {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 200px; height: 200px;
  background: rgba(255,122,0,0.15); border-radius: 50%; filter: blur(40px);
}
.artist-cta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; margin-bottom: 12px; }
.artist-cta p { color: rgba(255,255,255,0.6); margin-bottom: 28px; max-width: 500px; margin-inline: auto; }

/* Program */
.tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 32px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px; padding: 6px; max-width: 520px; margin-inline: auto;
  margin-bottom: 40px;
}
.tab-btn {
  flex: 1; padding: 12px 20px; border: none;
  border-radius: 999px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; background: transparent; color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.tab-btn.active { background: #ff7a00; color: #fff; }
.tab-content { display: none; max-width: 800px; margin: 0 auto; }
.tab-content.active { display: block; }
.schedule-item {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 28px;
  background: rgba(8,11,20,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; margin-bottom: 12px;
  transition: border-color 0.3s;
}
.schedule-item:hover { border-color: rgba(255,122,0,0.4); }
.time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: #ff7a00; min-width: 90px;
}
.schedule-info { flex: 1; }
.schedule-info h4 { font-size: 1.1rem; font-weight: 700; }
.tag-type {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07); border-radius: 999px;
  padding: 4px 12px; white-space: nowrap;
}
.tag-type.headliner { background: rgba(255,122,0,0.2); color: #ff7a00; }

/* Bilete */
.bilete-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 760px; margin: 0 auto 24px;
}
.bilet-card {
  background: rgba(8,11,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 40px 32px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.bilet-card:hover { border-color: rgba(255,122,0,0.4); transform: translateY(-4px); }
.bilet-card.featured {
  background: linear-gradient(160deg, #1a0b2e, #0a0d1a);
  border-color: rgba(255,122,0,0.5);
  box-shadow: 0 0 40px rgba(255,122,0,0.1);
}
.bilet-badge {
  position: absolute; top: 0; right: 0;
  background: #ff7a00; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-bottom-left-radius: 12px;
}
.bilet-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #ff7a00;
  background: rgba(255,122,0,0.1);
}
.bilet-card.featured .bilet-icon { background: rgba(255,122,0,0.2); }
.bilet-icon svg { width: 32px; height: 32px; }
.bilet-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  margin-bottom: 10px;
}
.bilet-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 24px; flex: 1; }
.bilet-note {
  text-align: center; color: rgba(255,255,255,0.4);
  font-size: 0.85rem; max-width: 500px; margin: 0 auto;
}

/* Parteneri */
.parteneri-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.partener-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s;
  filter: grayscale(1);
}
.partener-card:hover {
  filter: grayscale(0);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,122,0,0.3);
  color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* Gallery */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.galerie-tile {
  border-radius: 16px; overflow: hidden;
  position: relative; border: 1px solid rgba(255,255,255,0.05);
  cursor: default;
  background: linear-gradient(135deg, var(--g1), var(--g2));
}
.galerie-tile::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.45); transition: background 0.4s;
}
.galerie-tile:hover::before { background: rgba(0,0,0,0.2); }
.galerie-tile > span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: rgba(255,255,255,0);
  letter-spacing: 0.1em; text-align: center;
  transition: color 0.4s;
  z-index: 1;
}
.galerie-tile:hover > span { color: rgba(255,255,255,1); }
.galerie-tile.large { grid-column: span 2; grid-row: span 2; }
.galerie-tile.tall { grid-row: span 2; }
.galerie-tile.wide { grid-column: span 2; }

/* FAQ */
.faq-container .section-header { margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255,122,0,0.3); background: rgba(255,255,255,0.05); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: #fff;
  text-align: left; gap: 16px;
}
.faq-q:hover { color: #ff7a00; }
.faq-arrow {
  font-size: 1.5rem; color: #ff7a00; flex-shrink: 0;
  transition: transform 0.3s; line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a p {
  padding: 0 28px 22px;
  color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7;
}

/* Forms */
.forms-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 1100px; margin: 0 auto;
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 160px; height: 160px;
  background: rgba(255,122,0,0.08); border-radius: 50%; filter: blur(40px);
  pointer-events: none;
}
.form-card-accent {
  background: linear-gradient(160deg, rgba(26,11,46,0.8), rgba(8,11,20,0.8));
  border-color: rgba(255,122,0,0.3);
}
.form-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
  margin-bottom: 6px; position: relative; z-index: 1;
}
.form-sub { color: rgba(255,255,255,0.55); margin-bottom: 28px; position: relative; z-index: 1; }
form { position: relative; z-index: 1; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(8,11,20,0.6);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; outline: none; transition: border-color 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #ff7a00; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: #0a0d1a; }
.form-error { display: block; font-size: 0.78rem; color: #ff4444; margin-top: 4px; min-height: 18px; }
.form-success {
  margin-top: 16px; padding: 14px 20px;
  background: rgba(255,122,0,0.15); border: 1px solid rgba(255,122,0,0.3);
  border-radius: 10px; color: #ff7a00; font-weight: 600; text-align: center;
}

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; transition: all 0.3s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,122,0,0.4);
  transform: translateY(-4px);
}
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,122,0,0.1); color: #ff7a00;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.3s;
}
.contact-card:hover .contact-icon {
  background: rgba(255,122,0,0.25);
  box-shadow: 0 0 20px rgba(255,122,0,0.3);
  transform: scale(1.1);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.contact-value { font-size: 0.95rem; font-weight: 600; word-break: break-word; }

/* Footer */
#footer {
  background: #080b14; padding: 80px 0 36px;
  border-top: 1px solid rgba(255,122,0,0.2);
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, #ff7a00, transparent);
  box-shadow: 0 0 20px rgba(255,122,0,0.7);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 1;
  text-shadow: 0 0 20px rgba(255,122,0,0.25); margin-bottom: 8px;
}
.footer-slogan {
  font-size: 1.1rem; color: rgba(255,255,255,0.55);
  font-style: italic; font-weight: 300; margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 20px; margin-bottom: 40px; }
.footer-social a {
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-social a:hover { color: #ff7a00; }
.footer-social svg { width: 26px; height: 26px; display: block; }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* === SCROLL REVEAL ANIMATIONS === */
.fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* Stagger children inside grids */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.6s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.7s; }

.exp-grid .exp-card:nth-child(2) { transition-delay: 0.1s; }
.exp-grid .exp-card:nth-child(3) { transition-delay: 0.2s; }
.exp-grid .exp-card:nth-child(4) { transition-delay: 0.3s; }
.exp-grid .exp-card:nth-child(5) { transition-delay: 0.4s; }
.exp-grid .exp-card:nth-child(6) { transition-delay: 0.5s; }
.exp-grid .exp-card:nth-child(7) { transition-delay: 0.6s; }
.exp-grid .exp-card:nth-child(8) { transition-delay: 0.7s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,11,20,0.97); backdrop-filter: blur(20px); z-index: 999; padding: 100px 32px 40px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
  .nav-social { border: none; padding: 24px 0 0; margin-top: 8px; }
  .hamburger { display: flex; position: relative; z-index: 1000; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-card.large { grid-column: span 2; }
  .parteneri-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .bilete-grid { grid-template-columns: 1fr; max-width: 420px; }
  .forms-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .galerie-tile.large { grid-column: span 2; }
  .galerie-tile.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .countdown-num { width: 60px; height: 60px; font-size: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .lineup-grid { grid-template-columns: 1fr 1fr; }
  .parteneri-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .tabs { flex-direction: column; border-radius: 16px; max-width: 100%; }
  .schedule-item { flex-wrap: wrap; gap: 8px; }
  .artist-cta { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
