html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #0b1020;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.mt-075 {
  margin-top: 0.75rem;
}

.mt-06 {
  margin-top: 0.6rem;
}

.mt-045 {
  margin-top: 0.45rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(156, 163, 175, 0.3);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #f9fafb;
}

.logo span {
  color: #f97316;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

nav a {
  color: #e5e7eb;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f9fafb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.35), transparent 55%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fde68a;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 span {
  color: #fed7aa;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e5e7eb;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.meta-pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.4);
  background-color: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.btn-main,
.btn-ghost {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-main {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #111827;
  border-color: rgba(15, 23, 42, 0.9);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.6);
}

.btn-main:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.btn-ghost {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.4);
}

.btn-ghost:hover {
  background-color: rgba(15, 23, 42, 0.7);
}

.hero-note {
  font-size: 0.8rem;
  color: #d1d5db;
}

.hero-aside {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.hero-aside h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.tagline-large {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.hero-aside p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.hero-aside ul {
  list-style: none;
  font-size: 0.9rem;
  color: #d1d5db;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.hero-aside li::before {
  content: "•";
  color: #f97316;
  margin-right: 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  margin-top: 0.25rem;
}

.badge span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #22c55e;
}

main {
  background: radial-gradient(circle at top, #020617, #020617 45%, #020617 100%);
  color: #e5e7eb;
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #d1d5db;
  max-width: 36rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.section-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "•";
  color: #f97316;
  margin-right: 0.45rem;
}

.info-card {
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  padding: 1.25rem 1.3rem;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.info-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 0.5rem;
}

.info-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #f97316;
}

.muted {
  color: #9ca3af;
  font-size: 0.85rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

th,
td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(75, 85, 99, 0.7);
}

th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #9ca3af;
  background-color: rgba(15, 23, 42, 0.9);
}

tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.8);
}

.pill-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.8);
  font-size: 0.75rem;
  color: #bbf7d0;
  background-color: rgba(6, 95, 70, 0.6);
}

.highlight {
  color: #f97316;
  font-weight: 600;
}

.tickets-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.ticket-note {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-top: 0.75rem;
}

.ticket-locations {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.ticket-locations ul {
  list-style: none;
  margin-top: 0.35rem;
  display: grid;
  gap: 0.25rem;
}

.ticket-locations li::before {
  content: "•";
  color: #f97316;
  margin-right: 0.4rem;
}

.map-placeholder {
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  color: #9ca3af;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  border-radius: 0.85rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}

.gallery-item h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #f97316;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.contact-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
  padding: 1.1rem 1.2rem;
}

.contact-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.contact-label {
  font-weight: 600;
  color: #e5e7eb;
}

.invoice-block {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.85rem;
  color: #d1d5db;
}

.sponsors-band {
  border-radius: 0.9rem;
  border: 1px dashed rgba(156, 163, 175, 0.8);
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
  color: #d1d5db;
  text-align: center;
}

footer {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: #9ca3af;
}

@media (max-width: 900px) {

  .hero-inner,
  .two-col,
  .tickets-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    padding-top: 2.5rem;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    justify-content: flex-start;
  }

  .hero-inner {
    padding-inline: 1.2rem;
  }

  .section {
    padding-inline: 1.2rem;
  }
}

/* PROGRAM SECTION STYLES */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.3);
}

.program-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f97316;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.program-table {
  width: 100%;
  border-collapse: collapse;
}

.program-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease;
}

.program-table tr:last-child {
  border-bottom: none;
}

.program-table tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.program-time {
  padding: 0.75rem 0;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  width: 40%;
}

.program-band {
  padding: 0.75rem 0;
  text-align: right;
  font-weight: 700;
  color: #e5e7eb;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Special Highlight for major events */
.program-highlight {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), transparent);
  border-left: 3px solid #f97316;
}

.program-highlight td {
  color: #fed7aa;
  font-weight: 800;
  padding-left: 0.5rem;
}

.program-route-link {
  color: #f97316;
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 1rem;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.program-route-link:hover {
  color: #fed7aa;
}

/* COMPETITION BANNER */
.promo-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 5s infinite ease-in-out;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.promo-text {
  font-size: 1rem;
  color: #e5e7eb;
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* POSTER SECTION */
.poster-card {
  margin-top: 1.5rem;
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

.poster-preview {
  display: block;
  margin: 0 auto 1rem;
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.poster-preview:hover {
  transform: scale(1.02);
}

/* 3-Column Layout */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: 1fr;
  }
}

.info-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* Program Specials */


.highligh-special-cell {
  vertical-align: middle;
  padding: 0.5rem 0.25rem;
}

/* Fire Effect for AC/DC */
.program-special-fire {
  background: linear-gradient(90deg, rgba(30, 0, 0, 0.9), rgba(60, 10, 0, 0.9), rgba(30, 0, 0, 0.9));
  border: 1px solid #f97316;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
  animation: pulse-fire 2s infinite ease-in-out;
}

.program-special-fire td {
  border-bottom: none !important;
  /* Override standard table border */
  color: #fff;
}

.special-band-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.special-band-name {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #fcd34d, #f97316, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: right;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
}

.special-band-name::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 40px;
  background-image: url("media/ac-dc-pardubice-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.75rem;
}

@keyframes pulse-fire {
  0% {

    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3) inset, 0 0 5px rgba(249, 115, 22, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5) inset, 0 0 15px rgba(239, 68, 68, 0.5);
  }

  100% {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3) inset, 0 0 5px rgba(249, 115, 22, 0.3);
  }
}

.program-special-fire .program-time {
  padding-left: 8px;
  font-weight: 800;
  color: #fca5a5;
}