*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080b14;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.accent {
  color: #ff7a00;
}

#navbar {
  border-bottom: 1px solid transparent;
  left: 0;
  padding: 24px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  z-index: 1000;
}

#navbar.scrolled {
  background: rgba(8, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.nav-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.nav-logo,
.footer-logo,
.hero-title,
.section-title,
.form-title,
.artist-cta h3,
.bilet-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.nav-logo {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.45);
  transition: color 0.2s;
}

.nav-logo:hover {
  color: #ff7a00;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff7a00;
}

.nav-social {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  padding-left: 24px;
}

.nav-social svg,
.footer-social svg {
  display: block;
  height: 20px;
  width: 20px;
}

.hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: all 0.3s;
  width: 26px;
}

.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);
}

.messages {
  left: 50%;
  max-width: 720px;
  padding: 0 24px;
  position: fixed;
  top: 92px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1001;
}

.message {
  background: rgba(255, 122, 0, 0.16);
  border: 1px solid rgba(255, 122, 0, 0.42);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
}

.message-error {
  background: rgba(220, 38, 38, 0.16);
  border-color: rgba(220, 38, 38, 0.45);
}

#hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
}

.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 72%, rgba(255, 122, 0, 0.22), transparent 68%),
    linear-gradient(180deg, #080b14 0%, #1a0b2e 42%, rgba(255, 122, 0, 0.25) 78%, #080b14 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-date {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  color: #fff;
  font-size: 10rem;
  line-height: 0.9;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(255, 122, 0, 0.55), 0 0 120px rgba(255, 122, 0, 0.2);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 620px;
}

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.countdown-item {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.countdown-num {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ff7a00;
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.7rem;
  height: 82px;
  justify-content: center;
  line-height: 1;
  width: 82px;
}

.countdown-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 8px;
  text-transform: uppercase;
}

.btn {
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 32px;
  text-align: center;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.btn-primary {
  background: #ff7a00;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.34);
  color: #fff;
}

.btn-primary:hover {
  background: #e06800;
  box-shadow: 0 0 34px rgba(255, 122, 0, 0.58);
  transform: translateY(-2px);
}

.btn.full {
  display: block;
  width: 100%;
}

.hero-buttons,
.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-buttons {
  margin-bottom: 36px;
}

.social-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  height: 48px;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  width: 48px;
}

.social-icon:hover {
  background: #ff7a00;
  border-color: #ff7a00;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.45);
}

.social-icon svg {
  height: 20px;
  width: 20px;
}

.scroll-indicator {
  bottom: 36px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  animation: scrollPulse 2s ease-in-out infinite;
  background: linear-gradient(to bottom, rgba(255, 122, 0, 0.85), transparent);
  height: 60px;
  width: 1px;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: #0a0d1a;
}

.bilete-section {
  background:
    radial-gradient(ellipse at bottom, rgba(255, 122, 0, 0.15), transparent 70%),
    #0a0d1a;
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}

.section-title {
  color: #fff;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.section-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 auto;
  max-width: 700px;
}

.features-grid,
.exp-grid,
.parteneri-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.feature-card,
.exp-card,
.bilet-card,
.partener-card,
.contact-card,
.form-card,
.artist-cta,
.faq-item,
.legal-content,
.empty-state {
  border-radius: 8px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 122, 0, 0.32);
}

.feature-icon,
.bilet-icon,
.contact-icon {
  align-items: center;
  background: rgba(255, 122, 0, 0.14);
  border-radius: 50%;
  color: #ff7a00;
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon {
  font-size: 2rem;
  height: 64px;
  width: 64px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.feature-icon svg {
  display: block;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.exp-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.exp-card {
  background: #0f1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.exp-card::before {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), transparent 62%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s;
}

.exp-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-card > * {
  position: relative;
}

.exp-num {
  color: rgba(255, 122, 0, 0.38);
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.exp-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.exp-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
}

.lineup-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
}

.lineup-card {
  align-items: center;
  aspect-ratio: 1;
  background: #0a0d1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.lineup-card.large {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
}

.lineup-card::before {
  background: linear-gradient(to top, rgba(255, 122, 0, 0.35), transparent);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s;
  z-index: 1;
}

.lineup-card:hover {
  border-color: rgba(255, 122, 0, 0.35);
  transform: translateY(-3px);
}

.lineup-card:hover::before {
  opacity: 1;
}

.lineup-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.lineup-card.has-image::after {
  background: linear-gradient(to top, rgba(8, 11, 20, 0.78), rgba(8, 11, 20, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.lineup-card-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.lineup-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.lineup-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.lineup-q {
  color: rgba(255, 255, 255, 0.12);
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.lineup-tag,
.tag-type {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 13px;
  text-transform: uppercase;
}

.artist-cta {
  background: linear-gradient(135deg, #1a0b2e, #080b14);
  border: 1px solid rgba(255, 122, 0, 0.32);
  overflow: hidden;
  padding: 54px 40px;
  text-align: center;
}

.artist-cta h3 {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 12px;
}

.artist-cta p {
  color: rgba(255, 255, 255, 0.66);
  margin: 0 auto 28px;
  max-width: 560px;
}

.schedule-days {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: 860px;
}

.schedule-day h3 {
  color: #ff7a00;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.schedule-item {
  align-items: center;
  background: rgba(8, 11, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  padding: 20px 28px;
  transition: border-color 0.25s;
}

.schedule-item:hover {
  border-color: rgba(255, 122, 0, 0.42);
}

.time {
  color: #ff7a00;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  min-width: 90px;
}

.schedule-info {
  flex: 1;
}

.schedule-info h4 {
  font-size: 1.08rem;
  font-weight: 900;
}

.schedule-info p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.tag-type {
  white-space: nowrap;
}

.tag-type.headliner {
  background: rgba(255, 122, 0, 0.2);
  color: #ff7a00;
}

.empty-state {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  max-width: 720px;
  padding: 24px;
  text-align: center;
}

.bilete-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 24px;
  max-width: 760px;
}

.bilet-card {
  align-items: center;
  background: rgba(8, 11, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.bilet-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
  transform: translateY(-4px);
}

.bilet-card.featured {
  background: linear-gradient(160deg, #1a0b2e, #0a0d1a);
  border-color: rgba(255, 122, 0, 0.5);
}

.bilet-badge {
  background: #ff7a00;
  border-bottom-left-radius: 8px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}

.bilet-icon,
.contact-icon {
  font-size: 1.8rem;
  height: 64px;
  width: 64px;
}

.bilet-icon svg {
  display: block;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.bilet-card h3 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.bilet-card p {
  color: rgba(255, 255, 255, 0.64);
  flex: 1;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.bilet-note {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.86rem;
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
}

.parteneri-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 920px;
}

.partener-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  height: 96px;
  justify-content: center;
  letter-spacing: 0.14em;
  padding: 14px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.partener-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 122, 0, 0.32);
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-3px);
}

.partener-card img {
  max-height: 70px;
  object-fit: contain;
  width: 100%;
}

.galerie-grid {
  display: grid;
  gap: 12px;
  grid-auto-rows: 160px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1100px;
}

.galerie-tile {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.galerie-tile::before {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  inset: 0;
  position: absolute;
  transition: background 0.25s;
  z-index: 1;
}

.galerie-tile:hover::before {
  background: rgba(0, 0, 0, 0.18);
}

.galerie-tile img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.galerie-tile span {
  align-items: center;
  color: rgba(255, 255, 255, 0);
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 16px;
  position: absolute;
  text-align: center;
  transition: color 0.25s;
  z-index: 2;
}

.galerie-tile:hover span {
  color: #fff;
}

.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-container .section-header {
  margin-bottom: 48px;
}

.faq-list {
  margin: 0 auto;
  max-width: 780px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 122, 0, 0.3);
}

.faq-q {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 22px 28px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  color: #ff7a00;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  padding: 0 28px 22px;
}

.forms-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1100px;
}

.form-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 46px 40px;
}

.form-card-accent {
  background: linear-gradient(160deg, rgba(26, 11, 46, 0.85), rgba(8, 11, 20, 0.85));
  border-color: rgba(255, 122, 0, 0.3);
}

.form-title {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 6px;
}

.form-sub {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.form-group label {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  appearance: none;
  background: rgba(8, 11, 20, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  padding: 12px 16px;
  transition: border-color 0.25s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.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 option {
  background: #0a0d1a;
}

.form-error {
  color: #ff4444;
  display: block;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 18px;
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 920px;
}

.contact-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 34px 20px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
}

.contact-label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-icon svg {
  display: block;
  flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

#footer {
  background: #080b14;
  border-top: 1px solid rgba(255, 122, 0, 0.22);
  overflow: hidden;
  padding: 80px 0 36px;
  position: relative;
}

.footer-glow {
  background: linear-gradient(90deg, transparent, #ff7a00, transparent);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.7);
  height: 1px;
  left: 50%;
  max-width: 600px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 80%;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-logo {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 122, 0, 0.25);
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.44);
  transition: color 0.25s;
}

.footer-social a:hover {
  color: #ff7a00;
}

.footer-divider {
  background: rgba(255, 255, 255, 0.07);
  height: 1px;
  margin-bottom: 28px;
  width: 100%;
}

.footer-bottom {
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.legal-section {
  min-height: 70vh;
  padding-top: 160px;
}

.legal-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 860px;
  padding: 34px;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-actions {
  margin-top: 28px;
  text-align: center;
}

.fade-up {
  animation: fadeUp 0.9s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.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: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1020px) {
  .nav-links {
    align-items: flex-start;
    background: rgba(8, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 100px 32px 40px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.35rem;
    padding: 14px 0;
    width: 100%;
  }

  .nav-social {
    border: 0;
    margin-top: 8px;
    padding: 24px 0 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .hero-title {
    font-size: 7rem;
  }

  .section-title,
  .footer-logo {
    font-size: 4rem;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-card.large {
    grid-column: span 2;
  }

  .parteneri-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .forms-grid,
  .bilete-grid {
    grid-template-columns: 1fr;
  }

  .bilete-grid {
    max-width: 440px;
  }

  .galerie-grid {
    grid-auto-rows: 140px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-title {
    font-size: 4.8rem;
  }

  .hero-date {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .hero-sub {
    font-size: 1.15rem;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-num {
    font-size: 2rem;
    height: 58px;
    width: 58px;
  }

  .countdown-label {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .section-title,
  .footer-logo {
    font-size: 3rem;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .features-grid,
  .exp-grid,
  .lineup-grid,
  .parteneri-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .exp-card {
    padding: 24px 16px;
  }

  .exp-num {
    font-size: 2.4rem;
  }

  .lineup-q {
    font-size: 4rem;
  }

  .artist-cta,
  .form-card {
    padding: 34px 24px;
  }

  .schedule-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .tag-type {
    white-space: normal;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .galerie-grid {
    grid-auto-rows: 112px;
  }

  .galerie-tile.large,
  .galerie-tile.wide {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .features-grid,
  .exp-grid,
  .lineup-grid,
  .parteneri-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .lineup-card.large {
    aspect-ratio: 1;
    grid-column: span 1;
  }

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

  .galerie-tile.large,
  .galerie-tile.wide {
    grid-column: span 1;
  }
}
