@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import '../FontAwesome_v672/css/all.css';
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
:root {
  --color-primary: #ff6b47;
  --color-primary-subtle: rgba(255, 107, 71, 0.6);
  --color-secondary: #637d96;
  --color-secondary-subtle: rgba(99, 125, 150, 0.6);
  --color-cta: #fd275d;
  --color-cta-subtle: rgba(253, 39, 93, 0.6);
  --media-sm: 480px;
  --media-md: 768px;
  --media-lg: 1024px;
  --media-xl: 1200px;
  --media-2xl: 1400px;
  --hero-top-padding: 150px;
}

/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  Remove list styles (bullets/numbers)
  in case you use it with normalize.css
*/
ol, ul {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* Removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  font-size: 16px;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.mt-01 {
  margin-top: 0.1rem;
}

.mt-02 {
  margin-top: 0.2rem;
}

.mt-03 {
  margin-top: 0.3rem;
}

.mt-04 {
  margin-top: 0.4rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-06 {
  margin-top: 0.6rem;
}

.mt-07 {
  margin-top: 0.7rem;
}

.mt-08 {
  margin-top: 0.8rem;
}

.mt-09 {
  margin-top: 0.9rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mb-01 {
  margin-bottom: 0.1rem;
}

.mb-02 {
  margin-bottom: 0.2rem;
}

.mb-03 {
  margin-bottom: 0.3rem;
}

.mb-04 {
  margin-bottom: 0.4rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-06 {
  margin-bottom: 0.6rem;
}

.mb-07 {
  margin-bottom: 0.7rem;
}

.mb-08 {
  margin-bottom: 0.8rem;
}

.mb-09 {
  margin-bottom: 0.9rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.my-01 {
  margin: 0.1rem 0;
}

.my-02 {
  margin: 0.2rem 0;
}

.my-03 {
  margin: 0.3rem 0;
}

.my-04 {
  margin: 0.4rem 0;
}

.my-05 {
  margin: 0.5rem 0;
}

.my-06 {
  margin: 0.6rem 0;
}

.my-07 {
  margin: 0.7rem 0;
}

.my-08 {
  margin: 0.8rem 0;
}

.my-09 {
  margin: 0.9rem 0;
}

.my-10 {
  margin: 1rem 0;
}

.my-20 {
  margin: 2rem 0;
}

.my-30 {
  margin: 3rem 0;
}

.me-01 {
  margin-right: 0.1rem;
}

.me-02 {
  margin-right: 0.2rem;
}

.me-03 {
  margin-right: 0.3rem;
}

.me-04 {
  margin-right: 0.4rem;
}

.me-05 {
  margin-right: 0.5rem;
}

.me-06 {
  margin-right: 0.6rem;
}

.me-07 {
  margin-right: 0.7rem;
}

.me-08 {
  margin-right: 0.8rem;
}

.me-09 {
  margin-right: 0.9rem;
}

.me-10 {
  margin-right: 1rem;
}

.me-20 {
  margin-right: 2rem;
}

.me-30 {
  margin-right: 3rem;
}

.ms-01 {
  margin-left: 0.1rem;
}

.ms-02 {
  margin-left: 0.2rem;
}

.ms-03 {
  margin-left: 0.3rem;
}

.ms-04 {
  margin-left: 0.4rem;
}

.ms-05 {
  margin-left: 0.5rem;
}

.ms-06 {
  margin-left: 0.6rem;
}

.ms-07 {
  margin-left: 0.7rem;
}

.ms-08 {
  margin-left: 0.8rem;
}

.ms-09 {
  margin-left: 0.9rem;
}

.ms-10 {
  margin-left: 1rem;
}

.ms-20 {
  margin-left: 2rem;
}

.ms-30 {
  margin-left: 3rem;
}

.ms-40 {
  margin-left: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.text-center {
  text-align: center;
}

.color-primary {
  color: #ff6b47;
}

.color-yellow {
  color: yellow;
}

.bebas {
  font-family: "Bebas Neue", sans-serif !important;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.fs-01 {
  font-size: 0.1rem;
}

.fs-02 {
  font-size: 0.2rem;
}

.fs-03 {
  font-size: 0.3rem;
}

.fs-04 {
  font-size: 0.4rem;
}

.fs-05 {
  font-size: 0.5rem;
}

.fs-06 {
  font-size: 0.6rem;
}

.fs-07 {
  font-size: 0.7rem;
}

.fs-08 {
  font-size: 0.8rem;
}

.fs-09 {
  font-size: 0.9rem;
}

.fs-10 {
  font-size: 1rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

.fs-31 {
  font-size: 3.1rem;
}

.fs-32 {
  font-size: 3.2rem;
}

.fs-33 {
  font-size: 3.3rem;
}

.fs-34 {
  font-size: 3.4rem;
}

.fs-35 {
  font-size: 3.5rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.fs-37 {
  font-size: 3.7rem;
}

.fs-38 {
  font-size: 3.8rem;
}

.fs-39 {
  font-size: 3.9rem;
}

.fs-40 {
  font-size: 4rem;
}

.fs-41 {
  font-size: 4.1rem;
}

.fs-42 {
  font-size: 4.2rem;
}

.fs-43 {
  font-size: 4.3rem;
}

.fs-44 {
  font-size: 4.4rem;
}

.fs-45 {
  font-size: 4.5rem;
}

.fs-46 {
  font-size: 4.6rem;
}

.fs-47 {
  font-size: 4.7rem;
}

.fs-48 {
  font-size: 4.8rem;
}

.fs-49 {
  font-size: 4.9rem;
}

.fs-50 {
  font-size: 5rem;
}

.fs-60 {
  font-size: 6rem;
}

.fs-80 {
  font-size: 8rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.header .buy-ticket {
  opacity: 0;
  transition: all 0.3s ease;
}
.header.scrolled .buy-ticket {
  opacity: 1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /*@media (max-width: 1024px) {
  	justify-content: center;
  }*/
  align-items: center;
  padding: 0 20px;
}
.nav-container .logo {
  width: 100px;
}
@media (min-width: 1400px) {
  .nav-container .logo {
    width: 120px;
  }
}
.nav-container a {
  cursor: pointer;
}

.logo-mech {
  background: linear-gradient(45deg, #fd920c, #fd275d);
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-left: 1rem;
}

/*
.logo {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #fff, #ccc);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: relative;
}

.logo::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 25%;
	width: 50%;
	height: 50%;
	background: linear-gradient(45deg, #fff, #ccc);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
	*/
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a:hover {
  color: #ff6b47;
}

.visibility-hidden {
  visibility: hidden !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.text-shadow {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.sticker {
  position: absolute;
  background-size: cover;
  z-index: -1;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 200px;
}

.btn-cta {
  font-family: "Bebas Neue", sans-serif !important;
  cursor: pointer;
  font-size: 2rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: var(--color-cta);
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--color-cta-subtle);
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.video-modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes rock {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
.buy-ticket {
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 1.5rem !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.buy-ticket:hover {
  transform: translateY(-2px);
}
@media (min-width: 480px) {
  .buy-ticket {
    padding: 1rem 2rem;
  }
}

.hero {
  padding-top: var(--hero-top-padding);
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("../bg/hero_01.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 1;
  min-height: 100vh;
  /* Responzivní nastavení pro různá zařízení */
  /* Pro vysoké obrazovky */
  /* Pro široké obrazovky */
}
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    background-position: center top;
    padding-top: calc(var(--hero-top-padding) - 70px);
  }
}
@media (max-width: 480px) {
  .hero {
    background-position: center center;
    /* Safe area height pro mobily */
  }
}
@media (min-height: 900px) {
  .hero {
    background-position: center 40%;
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1400px) {
  .hero {
    background-position: center 80%;
  }
}

/* Fallback pro starší prohlížeče */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.prague {
  background: linear-gradient(45deg, #fd920c, #fd275d);
  bottom: -5rem;
  right: -2rem;
  color: white;
  border-radius: 3rem;
  padding: 0.7rem 1.4rem 0.7rem 1.05rem;
  font-size: 1.7rem;
  display: inline-block;
  margin-bottom: 3rem;
  animation: pulse 3s infinite;
  border: 2px solid #2c2c2c;
  box-shadow: 2px 2px 0 rgb(166, 166, 166);
  rotate: -10deg;
  z-index: 2;
}
@media (min-width: 768px) {
  .prague {
    bottom: -6rem;
    padding: 1rem 2rem 1rem 1.5rem;
    font-size: 2rem;
  }
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.competition {
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: inline-block;
  font-size: 2rem;
  color: yellow;
}

.date {
  position: relative;
  z-index: 2;
  color: var(--color-primary);
  filter: drop-shadow(0 0 1rem rgb(0, 0, 0));
  border-radius: 1rem;
  display: inline-block;
}

.year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.4);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 10rem;
  font-weight: 100;
  display: flex;
  gap: 2rem;
  z-index: 1;
}

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

.feature {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
  transform: translateY(-1rem) !important;
  /* menší a realističtější */
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  color: white;
  border: 3px solid #ff6b47;
  background: #272727;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 0 2rem rgba(255, 107, 71, 0.3);
}

.feature p {
  opacity: 0.8;
  line-height: 1.6;
}

.about {
  background: linear-gradient(45deg, #fd920c, #fd275d);
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.speakers-grid {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  justify-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.speaker {
  cursor: pointer;
  max-width: 500px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.speaker:hover {
  transform: translateY(-1rem) !important;
  /* menší a realističtější */
  background: rgba(255, 255, 255, 0.1);
}
.speaker:hover .speaker-avatar img {
  transform: scale(1.1);
}
.speaker:hover .speaker-avatar i {
  font-size: 10rem;
  opacity: 1;
}

.speakers-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.speaker-main-leader img {
  max-height: 200px;
}

.speaker-avatar {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}
.speaker-avatar img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-avatar i {
  opacity: 0.5;
  transition: font-size 0.3s ease, opacity 0.3s ease;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  filter: drop-shadow(0 0 2rem black);
}

.speaker-info {
  background: linear-gradient(45deg, #fd920c, #fd275d);
  text-align: start;
  padding: 1rem;
  height: 100%;
}

.btn-play {
  cursor: pointer;
  background: white;
  padding: 0.4rem 0.8rem;
  display: flex;
  gap: 0.5rem;
  border-radius: 1rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
}

.speaker-info-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.speakers-main {
  position: relative;
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  margin-bottom: 8rem;
}

@media (max-width: 768px) {
  .speakers-main {
    flex-direction: column;
    justify-content: center;
  }
  .speakers-main > div {
    margin: 0 auto;
  }
  .speaker-sticker {
    right: 60%;
  }
}
.video-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  margin-bottom: 8rem;
}

.speaker-sticker {
  bottom: 50%;
  right: 65%;
  transform: translate(50%, 50%);
  color: var(--color-primary);
  border-radius: 50%;
  padding: 1.5rem;
  margin-bottom: 3rem;
  animation: pulse 3s infinite;
  border: 3px solid #2c2c2c;
  rotate: -10deg;
  z-index: 2;
  aspect-ratio: 1/1;
  line-height: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: #272727;
}
@media (min-width: 768px) {
  .speaker-sticker {
    right: 50%;
  }
}
.speaker-sticker .date {
  font-size: 3rem;
}
@media (min-width: 768px) {
  .speaker-sticker .date {
    font-size: 4.5rem;
  }
}
.speaker-sticker .day {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .speaker-sticker .day {
    font-size: 2rem;
  }
}

.program {
  background: linear-gradient(45deg, #000000, #424242);
}

.program-header {
  display: flex;
  justify-content: center;
}

.program-header-title {
  position: relative;
  text-transform: uppercase;
}

.program-header-name {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 700px) {
  .program-header-name {
    text-wrap: nowrap;
  }
}

.program-header-label {
  position: absolute;
  top: -1rem;
  left: -10rem;
  transform: rotate(-10deg);
  /* zarovnání na střed a otočení */
  background: yellow;
  color: #2e2e2e;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  text-wrap: nowrap;
  text-transform: uppercase;
  z-index: 1;
  /* menší než title, pokud má být pod */
  box-shadow: 0 0 2rem rgba(253, 253, 0, 0.3);
}
@media (min-width: 700px) {
  .program-header-label {
    left: -16rem;
  }
}

.program-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-top: 10rem;
  margin-bottom: 40px;
}
@media (min-width: 700px) {
  .program-subtitle {
    margin-top: 5rem;
  }
}

.program-grid {
  display: flex;
  gap: 3rem;
  justify-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.program-day {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 20px;
  color: white;
  transition: all 0.3s ease;
  width: 500px;
}

.day-name {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-title {
  font-size: 1rem;
  margin-bottom: 15px;
}

.bg-color-1 {
  background: #7D6B9D;
}

.bg-color-2 {
  background: #5C9EAD;
}

.bg-color-3 {
  background: #53A8A3;
}

.bg-color-4 {
  background: #7BAF7B;
}

.bg-color-5 {
  background: #D4A74D;
}

.program-cards-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .program-cards-container {
    flex-direction: column;
  }
}

.program-card-item {
  flex: 1;
  overflow: hidden;
  border-radius: 2rem;
}

.program-card-item-bg {
  position: relative;
  max-height: 300px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.program-card-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.program-card-item-bg span {
  border-radius: 2rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 100;
  color: white;
  background: linear-gradient(45deg, #fd920c, #fd275d);
  padding: 1rem 2rem;
}

.program-card-item-desc {
  padding: 1rem;
  background: white;
  font-size: 1rem;
  color: black;
  overflow: hidden;
  height: 100%;
}

.entry-price-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.entry-price-item {
  flex: 1;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 0 3rem rgba(255, 255, 255, 0.3);
}

.entry-price-item-header {
  padding: 1rem 2rem;
  background: #f39c9c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 2.5rem;
  color: black;
}

.entry-price-item.highlight .entry-price-item-header {
  background: var(--color-primary);
}

.entry-price-item-bg {
  position: relative;
  height: 300px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.entry-price-item-bg.zone-b img {
  object-position: center -6rem;
}

.entry-price-item-desc {
  padding: 1rem;
  background: #323232;
  font-size: 1rem;
  color: white;
  overflow: hidden;
  height: 100%;
}

.entry-price-item-desc_header {
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.entry-price-item-desc_list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.entry-price-item-desc_list-item {
  display: flex;
}
.entry-price-item-desc_list-item :nth-child(1) {
  width: 30px;
  color: var(--color-cta);
}
.entry-price-item-desc_list-item.blocked {
  display: flex;
}
.entry-price-item-desc_list-item.blocked :nth-child(1) {
  width: 30px;
  color: red;
}
.entry-price-item-desc_list-item.blocked :nth-child(2) {
  color: gray;
  text-decoration: line-through;
}

.entry-price-item-desc_footer {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .entry-price-container {
    flex-direction: column;
  }
}
.swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  /* Tohle je důležité */
}

.card {
  display: flex;
}

.card-content {
  flex: 1;
  /* Vyplní výšku rodiče */
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: white;
  font-family: sans-serif;
  margin: 20px auto;
  overflow: hidden;
  border: 1px solid #ddd;
}

.card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1rem 0 1rem;
  position: relative;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #8c2424;
  font-size: 1.2rem;
}

.avatar.bg1 {
  background: #8c2424;
}

.avatar.bg2 {
  background: #9f972c;
}

.avatar.bg3 {
  background: #248c58;
}

.avatar.bg4 {
  background: #0b5ed7;
}

.avatar.bg5 {
  background: #568c24;
}

.avatar.bg6 {
  background: #704269;
}

.avatar.bg7 {
  background: #007552;
}

.card-rating {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.user-info {
  margin-left: 12px;
  flex: 1;
}

.card-header-name {
  font-weight: bold;
  color: black;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary);
}

.swiper-pagination {
  bottom: unset !important;
}

.swiper-pagination-bullet {
  background: var(--color-primary) !important;
}

.meta {
  font-size: 0.85em;
  color: #666;
}

.stars {
  font-size: 0.9em;
  color: #f7b500;
}

.stars .time {
  color: #888;
  margin-left: 6px;
  font-weight: normal;
}

.card-body {
  padding: 0 16px 16px;
  font-size: 0.95em;
  color: #333;
}

.main-image {
  width: 100%;
  margin-top: 12px;
  border-radius: 8px;
}

.card-footer {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #666;
}

.rooftop {
  background: url("../bg/rooftop_01.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: 500px;
}

@media (min-width: 1200px) {
  .rooftop {
    background-position-y: -3rem;
  }
}
@media (min-width: 1400px) {
  .rooftop {
    background-position-y: -18rem;
  }
}
@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }
}
.venue-container {
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.stage-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.stage {
  background: #e74c3c;
  color: white;
  padding: 1rem 8rem;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.performer-table {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 3rem;
  position: absolute;
}

@media (max-width: 1200px) {
  .performer-table {
    font-size: 2rem;
  }
}
.performer-table.left1 {
  left: -1rem;
  top: 7rem;
}

.performer-table.left2 {
  left: -1rem;
  top: 14rem;
}

.performer-table.right1 {
  right: -1rem;
  top: 7rem;
}

.performer-table.right2 {
  right: -1rem;
  top: 14rem;
}

.performer-label {
  position: absolute;
  color: #e74c3c;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 80px;
}

.performer-label.left {
  left: -2rem;
  top: 10.9rem;
}

.performer-label.right {
  right: -2rem;
  top: 10.9rem;
}

.zone {
  margin-bottom: 30px;
}

.zone-header {
  text-align: center;
  margin-bottom: 20px;
}

.zone-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.zone-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.zone-a .zone-title {
  color: #e74c3c;
}

.zone-a .zone-subtitle {
  color: #e74c3c;
}

.zone-b .zone-title {
  color: #f39c9c;
}

.zone-b .zone-subtitle {
  color: #f39c9c;
}

.zone-separator {
  height: 4px;
  background: #e74c3c;
  margin: 40px 0;
  border-radius: 2px;
}

.seating-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.seating-row {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.seat {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 1200px) {
  .seat {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
  }
}
.seat-zone-a {
  background: #e74c3c;
}

.seat-zone-b {
  background: #f39c9c;
}

.seat:hover {
  transform: scale(1.2);
}

/* První řada - 15 míst */
/* Druhá řada - 17 míst */
/* Třetí řada - 19 míst */
/* Čtvrtá řada - kratší */
/* Pátá řada - delší */
.zone-info {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}/*# sourceMappingURL=app.css.map */