@charset "UTF-8";
/*
 * KinoBrakel v1.0 (https://kinobrakel.de)
 * Copyright 2020 Tomas Nemec
 */
:root {
  --font-size: clamp(0.8rem, 0.8rem + 1.5vw, 0.96rem);
  --spacing: clamp(0.6rem, 0.5rem + 3vw, 1.2rem);
  --cont-w: 100%;
  --color-main: #c40000;
  --color-text-main: #c4c0c0;
  --color-bg-main: #111;
  --line-height: 1.6;
}

@media (min-width: 576px) {
  .s-left {
    text-align: left;
  }
  .s-right {
    text-align: right;
  }
  .s-center {
    text-align: center;
  }
  :root {
    --cont-w: 540px;
  }
}
@media (min-width: 768px) {
  .m-left {
    text-align: left;
  }
  .m-right {
    text-align: right;
  }
  .m-center {
    text-align: center;
  }
  :root {
    --cont-w: 720px;
  }
}
@media (min-width: 992px) {
  .l-left {
    text-align: left;
  }
  .l-right {
    text-align: right;
  }
  .l-center {
    text-align: center;
  }
  :root {
    --cont-w: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --cont-w: 1140px;
  }
}
svg.icon, svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

svg.icon, svg.lucide {
  display: inline-block;
  vertical-align: -0.125em;
}

.mb {
  margin-bottom: var(--spacing);
}

.email {
  unicode-bidi: bidi-override;
  direction: rtl;
}

::-moz-selection {
  color: #c4c0c0;
  background: #c40000;
}

::selection {
  color: #c4c0c0;
  background: #c40000;
}

* {
  scrollbar-width: thin; /* Užší verze */
  scrollbar-color: #444 #1a1a1a; /* Palec (tmavě šedá) / Pozadí (skoro černá) */
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 10px; /* Decentnější šířka */
}

*::-webkit-scrollbar-track {
  background: #1a1a1a; /* Tmavé pozadí ladící s webem kina */
}

*::-webkit-scrollbar-thumb {
  background-color: #444; /* Barva posuvníku */
  border-radius: 10px; /* Zaoblení - vypadá to moderněji */
  border: 2px solid #1a1a1a; /* Vytvoří efekt mezery kolem posuvníku */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #e53935; /* Bonus: Při najetí se změní na červenou (barva kina) */
}

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

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--spacing);
  font-weight: bold;
  color: #fff;
  line-height: 1.1;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
  color: #fff;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.3rem;
}

h5, .h5 {
  font-size: 1.2rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing);
}

small {
  font-size: 0.85em;
  color: rgb(134, 133.5, 134.5);
}

a {
  color: #ff5e5e;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
a:hover {
  color: #fff;
}

blockquote {
  display: block;
  margin: var(--spacing) 0;
  padding: calc(var(--spacing) / 2) var(--spacing);
  border-left: 4px solid #c4c0c0;
  background-color: #0d0c0e;
  font-style: italic;
  color: #c4c0c0;
}

code, pre, kbd {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.9em;
  background: #0d0c0e;
  color: #c4c0c0;
  padding: calc(var(--spacing) / 2) var(--spacing);
  border-radius: 0.25rem;
}

pre {
  display: block;
  overflow-x: auto;
  padding: var(--spacing);
}
pre code {
  padding: 0;
  background: transparent;
}

ul, ol {
  margin-left: calc(var(--spacing) * 2);
  margin-bottom: var(--spacing);
}
ul li, ol li {
  margin-bottom: calc(var(--spacing) / 4);
}

body > header {
  background-color: #191919;
  box-shadow: 0 2px 10px rgba(7.8, 7.2, 8.4, 0.7);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: clamp(0.4rem, 1vw, 0.75rem);
}
nav span, nav a {
  text-decoration: none;
  color: #c4c0c0;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
nav span:hover, nav a:hover {
  color: #ff5e5e;
}

.nav-menu li.activ span, .nav-menu a.activ {
  border-bottom: solid 1px #c40000;
}

.logo {
  border: none;
  line-height: 0;
}
.logo img {
  height: clamp(40px, 6vw, 60px);
  transition: transform 0.25s ease;
}
.logo:hover img {
  transform: scale(1.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing);
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu .submenu > span::after {
  content: "▾";
  padding-left: 5px;
}
.nav-menu .submenu ul {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  min-width: 200px;
  background: #191919;
  padding: calc(var(--spacing) / 2);
  border: 1px solid rgb(50.5, 50.5, 50.5);
  border-radius: 0.25rem;
  box-shadow: 0 8px 16px rgba(3.9, 3.6, 4.2, 0.4);
  z-index: 100;
  list-style: none;
}
.nav-menu .submenu ul li {
  padding: calc(var(--spacing) / 4);
  width: 100%;
  border-bottom: none;
}
.nav-menu .submenu.open ul {
  display: block;
}
@media (max-width: 767.98px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    pointer-events: none;
    transform: translateX(-100%);
    background: #191919;
    padding: var(--spacing);
    border-top: 1px solid #000;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    z-index: 100;
  }
  .nav-menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }
  .nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-menu .submenu ul {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: var(--spacing);
    margin-top: 0.5rem;
  }
  .nav-menu .submenu ul li {
    padding: 0.4rem 0;
    border: none;
  }
  .nav-menu .submenu ul li a {
    display: inline-block;
  }
}

.social-links {
  display: flex;
  gap: var(--spacing);
  align-items: center;
}
.social-links .social-icon {
  line-height: 0;
}
.social-links .social-icon img {
  width: auto;
  height: clamp(20px, 6vw, 35px);
  object-fit: contain;
  transition: transform 0.2s ease;
}
.social-links .social-icon:hover img {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 767.98px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  background-color: #c40000;
  height: 3px;
  width: 25px;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body > footer {
  background: #191919;
  box-shadow: 0 0 20px 0px rgba(7.8, 7.2, 8.4, 0.7);
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  clip-path: inset(0px -20px 0px -20px);
  width: 100%;
  padding-top: var(--spacing);
}
body > footer .grid {
  display: grid;
  gap: var(--spacing);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  body > footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  body > footer .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
body > footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body > footer article > header {
  background-color: rgb(25.95, 25.75, 25.75);
  text-transform: uppercase;
}
body > footer article {
  background-color: #111;
}
@media (min-width: 768px) {
  body > footer article {
    border: 0;
    box-shadow: 0px 0px 5px 5px rgba(196, 0, 0, 0.61);
  }
  body > footer article:hover {
    box-shadow: 0px 0px 5px 5px rgba(196, 0, 0, 0.81);
  }
}
body > footer address {
  display: inline-flex;
  padding: 0;
  margin: 0;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  line-height: var(--line-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #111;
  margin: 0;
  padding: 0;
  color: #c4c0c0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
@media (min-width: 768px) {
  body {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(../media/img/curtain.png);
  }
}
body main {
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  box-shadow: 0 0 20px 0px rgba(7.8, 7.2, 8.4, 0.7);
  clip-path: inset(0px -20px 0px -20px);
  background-color: #0d0c0e;
}

.container {
  width: 100%;
  max-width: var(--cont-w);
  margin-inline: auto;
  padding-inline: var(--spacing);
}

article {
  background-color: #202020;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  margin-bottom: var(--spacing);
  overflow: hidden;
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
}
article:has(> header) {
  padding-top: 0;
}
article:has(> footer) {
  padding-bottom: 0;
}
article > header {
  padding: calc(var(--spacing) / 2) var(--spacing);
  font-weight: bold;
  background-color: rgb(57.5, 57.5, 57.5);
}
article > header h1, article > header h2, article > header h3, article > header h4, article > header h5, article > header h6 {
  margin: 0;
}
article > header {
  margin-bottom: var(--spacing);
}
article > :not(header):not(footer) {
  padding-left: var(--spacing);
  padding-right: var(--spacing);
}
article > footer {
  padding: calc(var(--spacing) / 2) var(--spacing);
  margin-top: var(--spacing);
  background-color: #202020;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

table {
  margin-bottom: var(--spacing);
  table-layout: fixed;
}
table.striped tbody tr:nth-child(odd) th,
table.striped tbody tr:nth-child(odd) td {
  background-color: rgb(57.5, 57.5, 57.5);
}
table.striped tbody tr:hover {
  background-color: rgba(196, 0, 0, 0.25);
}
table tr td {
  padding: calc(var(--spacing) / 4) calc(var(--spacing) / 2);
  text-align: left;
  text-align: start;
}

button, .btn,
[type=submit],
[type=reset],
[type=button],
[role=button] {
  display: inline-block;
  vertical-align: middle;
  background-color: #c40000;
  border-color: #ff9191;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgb(89.5, 82.6153846154, 96.3846153846);
  border-radius: 0.25rem;
  outline: none;
  font-size: 1rem;
  line-height: var(--line-height);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
button:is([aria-current]:not([aria-current=false])), button:is(:hover, :active, :focus), .btn:is([aria-current]:not([aria-current=false])), .btn:is(:hover, :active, :focus),
[type=submit]:is([aria-current]:not([aria-current=false])),
[type=submit]:is(:hover, :active, :focus),
[type=reset]:is([aria-current]:not([aria-current=false])),
[type=reset]:is(:hover, :active, :focus),
[type=button]:is([aria-current]:not([aria-current=false])),
[type=button]:is(:hover, :active, :focus),
[role=button]:is([aria-current]:not([aria-current=false])),
[role=button]:is(:hover, :active, :focus) {
  background-color: rgb(106.5, 8.5, 8.5);
  border-color: rgb(10.4, 9.6, 11.2);
  box-shadow: 0px 0px 2px 2px rgba(10.4, 9.6, 11.2, 0.5);
}
button:focus, button:is([aria-current]:not([aria-current=false])):focus, .btn:focus, .btn:is([aria-current]:not([aria-current=false])):focus,
[type=submit]:focus,
[type=submit]:is([aria-current]:not([aria-current=false])):focus,
[type=reset]:focus,
[type=reset]:is([aria-current]:not([aria-current=false])):focus,
[type=button]:focus,
[type=button]:is([aria-current]:not([aria-current=false])):focus,
[role=button]:focus,
[role=button]:is([aria-current]:not([aria-current=false])):focus {
  outline: 3px solid rgb(10.4, 9.6, 11.2);
  outline-offset: -2px;
}

[type=submit], [type=reset], [type=button] {
  margin-bottom: var(--spacing);
}

:where(button, .btn, [type=submit], [type=reset], [type=button], [role=button])[disabled],
:where(fieldset[disabled]) :is(button, .btn, [type=submit], [type=button], [type=reset], [role=button]) {
  opacity: 0.5;
  pointer-events: none;
}.scroll-btn {
  background: rgba(196, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgb(70.25, 70.25, 70.25);
  box-shadow: 0 4px 30px rgba(3.9, 3.6, 4.2, 0.4);
  color: #fff;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s, background 0.3s ease;
}
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.scroll-btn:hover {
  background: rgba(196, 0, 0, 0.7);
  transform: scale(1.1);
}
.scroll-btn:active {
  transform: scale(0.95);
}
.scroll-btn svg {
  width: 24px;
  height: 24px;
}.movie-events {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  border-radius: 8px;
  height: 100%;
}
.movie-events h4 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  border-left: 3px solid #e50914;
  padding-left: 10px;
}
.movie-events .slider {
  flex-grow: 1;
  overflow: hidden;
}
.movie-events .slider .track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .movie-events .slider .track {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .movie-events .slider .track::-webkit-scrollbar {
    display: none;
  }
  .movie-events .slider .track {
    scrollbar-width: none;
  }
}
.movie-events .date {
  min-width: 140px;
}
.movie-events .date h5 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: #afafaf;
  white-space: nowrap;
}
.movie-events .date h5 span {
  color: #ffffff;
}
.movie-events .date h5 span.red {
  color: #e50914;
  font-weight: bold;
}
.movie-events .date .time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.movie-events .date .time > span, .movie-events .date .time a {
  display: block;
}
.movie-events .date .evdate {
  display: inline-block;
  background: #e50914;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.movie-events .date .evdate:hover {
  background: transparent;
  border-color: #e50914;
  color: #e50914;
  transform: translateY(-2px);
}
.movie-events .date > a {
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}
.movie-events small {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.movie-events small i.icon.info {
  color: #e50914;
}

@keyframes pulse-play {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.movie .trailer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #e50914;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(229, 9, 20, 0.5);
  margin: 1rem 0;
  transition: all 0.3s ease-in-out;
}
.movie .trailer svg {
  stroke: #fff;
  fill: rgba(229, 9, 20, 0.2);
  animation: pulse-play 2s infinite ease-in-out;
}
.movie .trailer:hover {
  background: #e50914;
  border-color: #e50914;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.movie .trailer:hover svg {
  stroke: #fff;
  fill: #fff;
  animation: none;
}
.movie .trailer:active {
  transform: scale(0.98);
}

.movie {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 15rem minmax(18rem, 1fr) minmax(20rem, 23rem);
  grid-template-areas: "poster info events" "desc   desc desc";
}
.movie .image {
  grid-area: poster;
}
.movie .info {
  grid-area: info;
  min-height: 150px;
}
.movie .text {
  grid-area: desc;
  min-height: 100px;
}
.movie .events {
  grid-area: events;
  min-height: 200px;
}
@media (max-width: 991px) {
  .movie {
    grid-template-columns: 15rem 1fr;
    grid-template-areas: "poster info events" "desc   desc  desc";
  }
}
@media (max-width: 984px) {
  .movie {
    grid-template-columns: 15rem 1fr;
    grid-template-areas: "poster info" "desc   desc" "events events";
  }
}
@media (max-width: 768px) {
  .movie {
    grid-template-columns: 15rem 1fr;
    grid-template-areas: "info info" "poster events " "desc   desc";
  }
}
@media (max-width: 650px) {
  .movie {
    grid-template-columns: 1fr;
    grid-template-areas: "poster" "info" "desc" "events";
  }
  .movie .image {
    height: auto;
    aspect-ratio: 2/3;
  }
}
.movie .image img {
  width: 100%;
  max-width: 15.2rem;
  border-radius: 0.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.movie .info h5 {
  color: #f3ac50;
}
.movie .info p {
  margin: 0.4rem 0 !important;
}
.movie .info p span {
  color: #FF4500;
  margin-right: 0.3rem;
}
.movie .info .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .movie .info .badges {
    justify-content: center;
  }
}
.movie .info .badges .badge {
  background: #333;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.movie .info .badges .badge.badge-event {
  background: rgba(255, 69, 0, 0.2);
  border-color: #FF4500;
}
.movie .info .badges .badge i {
  color: #FF4500;
}
.movie .info .badges .fsk-0 {
  background-color: #fff;
  color: #111;
}
.movie .info .badges .fsk-6 {
  background-color: #FFFF01;
  color: #111;
}
.movie .info .badges .fsk-12 {
  background-color: #4D9B4D;
  color: #111;
}
.movie .info .badges .fsk-16 {
  background-color: #4D78FF;
  color: #111;
}
.movie .info .badges .fsk-18 {
  background-color: #ff4545;
  color: #111;
}
.movie .text {
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
}