/* ================= CORE ================= */
:root {
  --bg: #050507;
  --bg-soft: #0e0e12;
  --orange: #ff7a00;
  --orange-glow: #ff9a2f;
  --white: #ffffff;
  --gray: #9ca3af;
  --line: rgba(255, 122, 0, .25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, #111 0%, var(--bg) 55%);
  color: var(--gray);
  line-height: 1.8;
  overflow-x: hidden;
}


.text-main {
  color: #e5e7eb;
  /* hlavní text – čitelný */
}

.text-muted {
  color: var(--gray);
  /* sekundární */
}

.text-soft {
  color: #6b7280;
  /* jemné info */
}



.text-highlight {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.7;

  border-left: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  padding-left: 1.2rem;
  padding-right: 1.2rem;

  margin: 2rem 0;
}


h1,
h2,
h3 {
  text-transform: uppercase;
  letter-spacing: .25em;
}

a {
  color: var(--orange);
  text-decoration: none;
}

section {
  padding: 8rem 2rem;
  position: relative;
}

.container {
  max-width: 1300px;
  margin: auto;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.2rem 2rem;
  z-index: 999;

  background: rgba(0,0,0,0.9);
}


.nav a {
  margin-left: 2rem;
  font-weight: 700;
  font-size: .9rem;
}


.nav a:hover {
  opacity: 1;
  text-shadow: 0 0 10px var(--orange);
  text-decoration: underline;
}


/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url('../images/banner.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.600), rgba(0, 0, 0, .600), rgba(0, 0, 0, .600)),
    radial-gradient(circle at center, rgba(255, 122, 0, .25), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255, 122, 0, .45);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 3rem;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--orange);
  border: 1px solid var(--orange);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: .35s;
}

.btn:hover {
  background: var(--orange);
  color: #000;
  box-shadow: 0 0 45px var(--orange-glow);
}

/* ================= DIVIDER ================= */
.divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .6;
}

/* ================= ABOUT ================= */
.about p {
  max-width: 900px;
  margin: auto;
  font-size: 1.05rem;
  text-align: center;
}

/* ================= PROGRAM ================= */
.program {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.day {
  padding: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0c0c11, #050507);
}

.day h3 {
  color: var(--orange);
  margin-bottom: 1rem;
}

/* ================= ARTISTS ================= */
.artists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.artist {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.artist img {
  width: 100%;
  transition: transform .6s ease;
}

.artist:hover img {
  transform: scale(1.08);
}

.artist span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
  font-weight: 800;
  color: #fff;
}

/* ================= INFO BLOCKS ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info {
  padding: 2rem;
  border-left: 3px solid var(--orange);
  background: #0a0a0f;
}

.info_parking {
  padding: 2rem;
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  background: #0a0a0f;
}

/* ================= FOOTER ================= */
footer {
  padding: 4rem 2rem;
  text-align: center;
  background: #000;
  border-top: 1px solid var(--line);
}

h2 {
  color: var(--orange);
  margin-bottom: 1rem;
  text-align: center;
}


.name {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.role {
  color: rgba(255, 122, 0, 0.6);
  font-weight: 600;
  margin-bottom: 0.8rem;
}


a {
  color: var(--orange);
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: var(--orange-glow);
  text-shadow: 0 0 8px rgba(255, 122, 0, 0.5);
  text-decoration: underline;
}


.container img {

  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}





.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: center;
}


.sponsor {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 120px;
  padding: 1rem;

  background: #0a0a0f;
  border: 1px solid var(--line);

  opacity: 0.7;
}


.sponsor img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;

  filter: grayscale(100%) brightness(1.2);
  transition: .3s;
}


.sponsor:hover img {
  filter: grayscale(0%) brightness(1);
}

.sponsor:hover {
  border-color: var(--orange);
}


/* ================= FOOTER ================= */
.footer {
  background: #000;
  padding: 5rem 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(to top, #000, #050507);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

/* SLOUPCE */
.footer-col {
  color: var(--gray);
}

.footer-col.center {
  text-align: center;
}

.footer-col.right {
  text-align: right;
}

/* LOGO */
.footer-logo {
  max-width: 140px;
  filter: grayscale(100%) brightness(1.5);
}

/* SOCIAL */
.socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--white);
  color: var(--white);

  transition: .3s;
}

.icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

/* NADPISY */
.footer h3 {
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.right {
    text-align: center;
  }
}


@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;

    background: #000;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}



/* ================= ✅ GLOBAL MOBILE FIX ================= */
@media (max-width: 768px) {

  /* MENŠÍ PADDING */
  section {
    padding: 4rem 1rem;
  }

  /* HERO */
  .hero {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* TEXTY */
  h1, h2, h3 {
    letter-spacing: 0.1em;
  }

  /* ================= NAV ================= */

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;

    background: #000;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  /* ================= GRIDY ================= */

  .program {
    grid-template-columns: 1fr;
  }

  .artists {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .sponsors {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ================= FOOTER ================= */

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.right {
    text-align: center;
  }

}


.datum {
  display: block;
  margin-top: 1rem;

  color: var(--orange);
  font-weight: 600;

  text-align: right;
}


.canceled {
  text-decoration: line-through;
  opacity: 0.6;
}



.canceled-artist {
  position: relative;
  overflow: hidden;
}

.canceled-artist::after {
  content: "ZRUŠENO";
  position: absolute;

  bottom: 40%;
  left: -20%;

  width: 140%;

  transform: rotate(-25deg);

  background: rgba(255, 122, 0, 0.85);
  color: #000;

  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2em;

  padding: 0.5rem 0;
  font-size: clamp(0.8rem, 2vw, 1rem);

  pointer-events: none;
}


.canceled-artist img {
  filter: grayscale(100%);
}

.footer-ml-logo {
  height: 30px;
  width: auto;

  margin-top: 0.5rem;

  opacity: 0.7;
  transition: .3s;
}

.footer-ml-logo:hover {
  opacity: 1;
}


.info-location {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  border-left: 3px solid var(--orange);
  border-right  : 3px solid var(--orange);
  padding: 2rem;
}

.location-text {
  flex: 1;
}

.location-map {
  flex: 1;
  max-width: 400px;
}



.location-map-img {
  width: 100%;
  height: auto;

  border: 1px solid var(--line);

  transition: .3s;
}


.location-map-img:hover {
  transform: scale(1.03);
}



@media (max-width: 768px) {
  .info-location {
    flex-direction: column;
  }

  .location-map {
    max-width: 100%;
  }
}



.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 800px;

  background: linear-gradient(90deg, #080813, #020205);
  color: #d1d5db;

  padding: 1.2rem 1.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  border-radius: 12px;
  border: 1px solid var(--line);

  box-shadow: 0 0 20px rgba(0,0,0,0.6);

  z-index: 9999;
}

/* TEXT */
.cookie-text {
  font-size: 0.9rem;
}

/* BUTTON */
.cookie-bar button {
  background: linear-gradient(135deg, #fba329, #d38a01);
  border: none;

  padding: 0.7rem 1.5rem;
  border-radius: 10px;

  font-weight: bold;
  cursor: pointer;

  transition: .3s;
}

.cookie-bar button:hover {
  transform: scale(1.05);
}


@media (max-width: 600px) {
  .cookie-bar {
    flex-direction: column;
    text-align: center;
  }

  .cookie-bar button {
    width: 100%;
  }
}
