@charset "UTF-8";
.link__primary {
  margin: 0;
  padding: 0;
  display: block;
  text-decoration: none;
  color: #f4f6f6;
}

.image__primary {
  margin: 0;
  padding: 0;
  display: block;
}

.section__padding {
  padding: 40px;
}
@media (min-width: 800px) {
  .section__padding {
    padding: 40px 60px;
  }
}

.section__padding-tlr {
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 800px) {
  .section__padding-tlr {
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

.section__h2 {
  margin: 0;
  padding: 20px 0;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.section__p {
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

.button__primary--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button__primary {
  display: block;
  padding: 20px;
  border: 1px solid #040505;
  width: 60%;
  color: #040505;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(0);
  transition: transform 0.5s ease;
}
.button__primary:hover {
  border: 1px solid #706133;
  color: #706133;
  transform: translateX(1px);
}
@media (min-width: 600px) {
  .button__primary {
    width: 40%;
  }
}
@media (min-width: 600px) {
  .button__primary {
    width: 60%;
  }
}

.button__secondary {
  width: 80%;
}
@media (min-width: 600px) {
  .button__secondary {
    width: 50%;
  }
}
@media (min-width: 800px) {
  .button__secondary {
    width: 70%;
  }
}

.button__thirdary {
  color: #f4f6f6;
  border: 1px solid #f4f6f6;
}

@media (max-width: 799px) {
  .line::before {
    content: "";
    position: absolute;
    left: 50%; /* střed stránky */
    transform: translateX(-50%); /* posun, aby linka byla opravdu vycentrovaná */
    width: 90%; /* 90% šířky */
    height: 1px; /* tloušťka linky */
    background-color: #f4f6f6;
  }
}
.section__line::before {
  content: "";
  position: absolute;
  left: 50%; /* střed stránky */
  transform: translateX(-50%); /* posun, aby linka byla opravdu vycentrovaná */
  width: 90%; /* 90% šířky */
  max-width: 1100px;
  height: 1px; /* tloušťka linky */
  background-color: #f4f6f6;
}

.carousel-wrapper {
  margin: 40px 20px;
  margin-bottom: 60px;
  position: relative;
}

.carousel {
  margin: 20px 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .carousel {
    margin: 20px 30px 0 30px;
  }
}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.carousel img {
  padding: 3px;
  width: 100%;
  display: block;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(244, 246, 246, 0.7);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 1px;
}

button.next {
  right: 1px;
}

@media (max-width: 600px) {
  .carousel-item {
    min-width: 100%; /* 1 obrázek */
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .carousel-item {
    min-width: 50%; /* 2 obrázky */
  }
}
@media (min-width: 901px) {
  .carousel-item {
    min-width: 25%; /* 4 obrázky */
  }
}
.title__h1 {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.title__h2 {
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.title__h3 {
  margin: 0;
  padding: 30px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}

@media (min-width: 800px) {
  .title__marked {
    font-size: 35px;
    font-weight: 300;
  }
}

@media (min-width: 800px) {
  .title__marked--left {
    font-size: 35px;
    font-weight: 300;
    text-align: left;
  }
}

.title__margin {
  margin-top: 0;
  margin-bottom: 30px;
}

.social__container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social__a {
  display: inline-block;
}

.social__img {
  width: 30px;
  height: 30px;
  color: #040505; /* výchozí barva */
  transition: color 0.25s ease, transform 0.18s ease;
  transform: scale(1); /* výchozí stav */
}

.social__img:hover {
  color: #706133; /* barva při hoveru */
  transform: scale(1.12); /* mírné zvětšení */
}

/* border-box */
html {
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6f6;
  background-color: #040505;
  overflow-x: hidden;
}

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

.header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #040505;
  color: #f4f6f6;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}

.header__logo img {
  margin: 0;
  padding: 10px 0;
  width: 100px;
  height: auto;
}
@media (min-width: 800px) {
  .header__logo img {
    width: 150px;
  }
}

.hamburger {
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  margin: 15px auto;
}

/* Pruhy hamburgeru */
.hamburger span {
  display: block;
  height: 3px;
  background: #f4f6f6;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Aktivní stav hamburgeru */
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  animation: hamburgerPulse 3.5s ease-in-out infinite alternate;
}

/* Animace pro změnu barvy při aktivaci */
@keyframes hamburgerPulse {
  0% {
    background-color: #f4f6f6;
  }
  100% {
    background-color: #A8914D;
  }
}
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Menu (mobil) */
.navigation {
  position: absolute;
  top: 280px;
  right: 0;
  width: 0;
  overflow: hidden;
  background: radial-gradient(circle at bottom right, #040505, #000); /* $color-primary + tmavší */
  transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
}

.navigation.active {
  width: 100%;
  animation: saxPulse 3.5s infinite ease-in-out alternate;
}
@media (min-width: 800px) {
  .navigation.active {
    animation: none;
  }
}

@keyframes saxPulse {
  0% {
    box-shadow: 0 0 20px 5px rgba(210, 198, 157, 0.2);
  } /* $color-thirdary */
  50% {
    box-shadow: 0 0 35px 10px rgba(168, 145, 77, 0.3);
  } /* $color-fourthary */
  100% {
    box-shadow: 0 0 50px 15px rgba(210, 198, 157, 0.4);
  } /* $color-thirdary */
}
.menu__ul {
  margin: 0;
  padding: 0;
}

.menu__li {
  display: block;
  list-style: none;
}

.menu__a {
  margin: 20px 0;
  display: block;
  text-decoration: none;
  font-size: 22px;
  color: #f4f6f6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu__a:hover {
  color: #D2C69D;
  transform: translateX(4px);
}

.languages__grid {
  margin: 0;
  padding: 10px 0 0 0;
}

.languages {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.languages__a {
  margin: 0;
  padding: 2px 3px;
  display: inline-block;
  color: #f4f6f6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.languages__a:hover {
  border: 1px solid #D2C69D;
  color: #D2C69D;
}

.languages__a[data-state=active] {
  border: 1px solid #A8914D;
  color: #A8914D;
}

/* Zbigniew Kaleta Music */
.menu__title {
  margin: 0;
  padding: 10px 0;
  color: #f4f6f6;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: none; /* normální text */
  text-align: right;
}

@keyframes activePulse {
  0% {
    color: #f4f6f6;
  }
  50% {
    color: #A8914D;
  }
  100% {
    color: #f4f6f6;
  }
}
@keyframes menuPulse {
  0% {
    color: #f4f6f6;
    border-bottom-color: #f4f6f6;
  }
  50% {
    color: #A8914D;
    border-bottom-color: #A8914D;
  }
  100% {
    color: #f4f6f6;
    border-bottom-color: #f4f6f6;
  }
}
.menu__a[data-state=active] {
  animation: activePulse 3.5s infinite ease-in-out alternate;
}
@media (min-width: 800px) {
  .menu__a[data-state=active] {
    border-bottom: 1px solid #A8914D;
    animation: menuPulse 3.5s infinite ease-in-out alternate;
  }
}

/* Desktop */
@media (min-width: 800px) {
  /* Celý header */
  .header__container {
    position: relative;
    padding: 20px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
  .header__container::after {
    content: "";
    position: absolute;
    bottom: 0; /* umístění na spodní hraně hlavičky */
    left: 50%; /* střed stránky */
    transform: translateX(-50%); /* posun, aby linka byla opravdu vycentrovaná */
    width: 90%; /* 90% šířky */
    height: 1px; /* tloušťka linky */
    background-color: #f4f6f6;
  }
  /* Pravý blok: jazyky, menu, titulek pod sebou */
  .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
  }
  .languages__grid {
    order: 1;
    margin-bottom: 0;
  }
  .navigation {
    order: 2;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
  }
  /* Menu odkazy vedle sebe*/
  .menu__ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row; /* vodorovně */
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
  }
  .menu__a {
    margin: 0;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f4f6f6;
    transform: translateX(0);
    transition: transform 0.5s ease;
  }
  .menu__a:hover {
    color: #D2C69D;
    transform: translateX(1px);
  }
  /* Titulek pod menu */
  .menu__title {
    padding-bottom: 0;
    order: 3;
    font-size: 30px;
    text-transform: none;
    letter-spacing: 1px;
    color: #f4f6f6;
  }
  .hamburger {
    display: none;
  }
}
.concerts__container {
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .concerts__container {
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }
}
@media (min-width: 1000px) {
  .concerts__container {
    grid-template-columns: 1fr 1.1fr;
  }
}

.concerts__left {
  display: grid;
  align-items: center;
}

.concerts__image {
  display: block;
  width: 100%;
}

@media (min-width: 800px) {
  .concerts__list {
    align-self: center;
  }
}
@media (min-width: 800px) {
  .concerts__title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.concerts__h2 {
  margin: 0;
  padding: 20px 0;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 800px) {
  .concerts__h2 {
    width: 100%;
    text-align: left;
  }
}
@media (min-width: 1000px) {
  .concerts__h2 {
    width: 80%;
  }
}

.concert__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 800px) {
  .concert__items {
    align-items: flex-end;
  }
}

.concert__item {
  margin: 0;
  padding: 10px;
  padding-bottom: 30px;
  width: 90%;
}
@media (min-width: 600px) {
  .concert__item {
    width: 70%;
  }
}
@media (min-width: 800px) {
  .concert__item {
    padding: 10px 0;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .concert__item {
    width: 80%;
  }
}

.concert__date {
  padding-bottom: 5px;
  font-size: 18px;
}

.concert__title {
  padding-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
}

.concert__link {
  display: block;
  color: #A8914D;
  transform: translateX(0);
  transition: transform 0.5s ease;
}
.concert__link:hover {
  color: #D2C69D;
  transform: translateX(1px);
}

.concert__place {
  font-size: 18px;
  font-weight: 300;
}

.about {
  background-color: #D2C69D;
  color: #040505;
}

@media (min-width: 800px) {
  .about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1050px;
  }
}

@media (min-width: 800px) {
  .about__text {
    padding-left: 20px;
    text-align: center;
  }
}

.about__title {
  text-align: center;
}

.about__button {
  padding: 20px 0 10px 0;
}

.about__social {
  padding: 20px 0 10px 0;
}

.media__h2 {
  text-align: center;
  color: #f4f6f6;
}

.media__button {
  margin-top: 20px;
}

.media__a {
  width: 60%;
  color: #f4f6f6;
  border-color: #f4f6f6;
}
@media (min-width: 900px) {
  .media__a {
    width: 30%;
  }
}

.partners {
  background-color: #f4f6f6;
}

.partners__h2 {
  text-align: center;
  color: #040505;
}

.partners__link {
  display: flex;
  justify-content: center;
}

.partners__img {
  display: block;
  max-width: 200px;
}

@media (min-width: 600px) {
  .koncert {
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
  }
}

.koncert__text {
  justify-self: start;
}

.koncert__date {
  margin: 0;
  padding: 0;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
}

.koncert__place {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
}

.koncert__title {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.koncert__description {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
}

.koncert__img {
  margin: 0;
  padding: 30px 0 10px 0;
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 600px) {
  .koncert__img {
    padding: 0;
    max-height: 400px;
  }
}

.koncert__container .section__line:last-child {
  display: none;
}

.yt-wrapper {
  margin: 0;
  padding-bottom: 10px;
}
@media (min-width: 600px) {
  .yt-wrapper {
    padding-bottom: 0;
  }
}

.yt {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  cursor: pointer;
  overflow: hidden;
  border: none;
  display: block;
  background: none;
}

.yt-thumb {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  /* Smooth animace pro PC */
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform, filter; /* optimalizace pro plynulé hover efekty */
}

.yt:hover .yt-thumb {
  filter: grayscale(100%);
  transform: scale(1.02); /* lehce zvětší */
}

.yt-play {
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
}

.yt:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 0, 0, 0.5); /* červené při hoveru */
}

.yt-title {
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
}

.video__grid {
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 1000px;
}
@media (min-width: 600px) {
  .video__grid {
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .video__grid {
    padding: 20px 40px;
  }
}

.media__container {
  margin: 0 auto;
  padding: 40px 40px 0px 40px;
}

.bio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .bio__grid {
    grid-template-columns: 180px 1fr;
  }
}

.bio__container .section__p {
  font-weight: 300;
}

.bio__title {
  margin-top: 40px;
}
@media (min-width: 800px) {
  .bio__title {
    text-align: left;
    font-size: 35px;
  }
}

.bio__img {
  width: 100%;
}

.bio__img--single {
  padding: 20px 0;
}

.bio__images {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) {
  .bio__images {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.bio__list {
  margin: 0;
  padding-left: 0;
  letter-spacing: 0.5px;
  line-height: 1.65;
  list-style: none;
}

.bio__list--name {
  font-weight: 500;
}

.bio__list--desc {
  font-weight: 300;
}

.bio__buttons {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 800px) {
  .bio__buttons {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .bio__buttons .bio__button-A {
    justify-content: flex-end;
  }
  .bio__buttons .bio__button-B {
    justify-content: flex-start;
  }
}

.contact__title {
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: 300;
}
@media (min-width: 800px) {
  .contact__title {
    text-align: left;
    font-size: 35px;
    padding-bottom: 10px;
  }
}

.contact__container {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 800px) {
  .contact__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact__social--container {
  display: flex;
  justify-content: right;
  gap: 20px;
}

.contact__social--a {
  display: inline-block;
}

.contact__social--img {
  width: 30px;
  height: 30px;
  color: #040505; /* výchozí barva */
  transition: color 0.25s ease, transform 0.18s ease;
  transform: scale(1); /* výchozí stav */
}

.contact__social--img:hover {
  color: #706133; /* barva při hoveru */
  transform: scale(1.12); /* mírné zvětšení */
}

.email__link {
  font-weight: 300;
  text-decoration: none;
  color: #040505;
}

.email__link:hover {
  color: #706133;
}

.footer__line {
  margin-bottom: 10px;
}

.footer__line::before {
  background-color: #040505;
  max-width: 850px;
}

.footer {
  background-color: #D2C69D;
  color: #040505;
}

.footer__container {
  padding: 40px;
  max-width: 900px;
}

.footer__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 800px) {
  .footer__section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__logo {
  margin: 10px 0;
  padding: 0;
  display: block;
  width: 100px;
  color: #040505;
}
.footer__logo:hover {
  color: #706133;
}
@media (min-width: 800px) {
  .footer__logo {
    width: 50px;
  }
}

.footer__title {
  display: block;
  text-decoration: none;
  color: #040505;
  font-size: 20px;
  font-weight: 300;
  transition: color 0.25s ease, transform 0.18s ease;
  transform: scale(1); /* výchozí stav */
}
.footer__title:hover {
  color: #706133;
  transform: scale(1.02); /* mírné zvětšení */
}

.footer__jarmila {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: #040505;
  transition: color 0.25s ease, transform 0.18s ease;
  transform: scale(1); /* výchozí stav */
}
.footer__jarmila:hover {
  color: #706133;
  transform: scale(1.02); /* mírné zvětšení */
}

/*# sourceMappingURL=style.css.map */
