* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  scroll-behavior: smooth;
}
html,
body,
section,
footer {
  overflow-x: hidden;
}

section {
  padding: 80px 4vw;
}

body {
  background: rgb(255, 248, 240);
  background: -moz-linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background: -webkit-linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background: linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
#actionBar {
  width: 100%;
  min-height: 4vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffefc4;
  border-bottom: 1px solid black;
  font-size: 0.9rem;
  font-weight: 500;
}
nav {
  min-height: 8vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 2rem;
}
#logo {
  margin-left: 2rem;
  width: 200px;
}
.link a,
.primary a {
  color: black;
  margin-inline: 0.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  border: 1px solid black;
  border-radius: 40px;
  transition: 0.2s ease;
}
.link a:hover {
  background: #ffefc4;
}
.primary a {
  background: #ffefc4;
}
.primary a:hover {
  background: #f4d170;
}
header {
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide1 {
  width: 100%;
  min-height: 92vh;
  background-image: url("/assets/slide1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.slide2 {
  width: 100%;
  min-height: 92vh;
  background-image: url("/assets/slide2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.slide3 {
  width: 100%;
  min-height: 92vh;
  background-image: url("/assets/slide3.png");
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
}
.slide4 {
  width: 100%;
  min-height: 92vh;
  background-image: url("/assets/slide4.png");
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
}
.slideTitle {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  max-width: 90%;
}
.slideSubtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.slide1btn {
  background: #dcfdf1;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border: 1px solid black;
  border-radius: 40px;
  transition: 0.2s ease;
}
.slide1btn:hover {
  background: #c5e2d7;
}
.slide3btn {
  background: #ffd1f5;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border: 1px solid black;
  border-radius: 40px;
  transition: 0.2s ease;
}
.slide4btn:hover {
  background: #bccda8;
}
.slide4btn {
  background: #eaffd1;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border: 1px solid black;
  border-radius: 40px;
  transition: 0.2s ease;
}
.slide3btn:hover {
  background: #efbde4;
}
.slide2btn {
  background: #ddd2fd;
  color: black;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border: 1px solid black;
  border-radius: 40px;
  transition: 0.2s ease;
}
.slide2btn:hover {
  background: #bdb3d9;
}
.textContent {
  margin-left: 5rem;
  margin-top: -5rem;
}
.slider-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #eaeac4;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid black;
}

.dot.active {
  background-color: #c2c2a4;
}

header {
  position: relative;
  overflow: hidden;
}

header > .slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92vh;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

header > .slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
#plan {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
}
.leftImage img {
  width: 450px;
  border: 1px solid rgba(0, 0, 0, 0.739);
  border-radius: 6px;
}
.rightText h3 {
  font-size: 3rem;
  font-weight: 700;
  max-width: 600px;
}

.rightText {
  margin-left: 4rem;
}
.rightText p {
  line-height: 150%;
  margin-top: 2rem;
  opacity: 0.8;
  max-width: 450px;
}
.rightText ul {
  margin-top: 2rem;
  margin-left: 1rem;
  list-style: circle;
}
.rightText li {
  margin-top: 0.4rem;
}
#showMore {
  margin-top: 0.6rem;
  text-decoration: underline black;
  cursor: pointer;
}
#akce {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#ucitele {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#ucitele h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.ucitelkyCards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ucitelka {
  height: 400px;
  width: 300px;
  background: red;
  border-radius: 1rem;
  position: relative;
  border: 1px solid grey;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ucitelkyCards .row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ucitelkyCards .row:first-child {
  margin-bottom: 2rem;
}

.ucTextContent {
  margin-top: 2rem;
}
.ucText {
  font-size: 1.5rem;
  font-weight: 600;
}
.ucImg {
  margin-top: 2rem;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid gray;
  object-fit: cover;
  object-position: center;
}

.uOne {
  background: #f8f3e4;
}
.uTwo {
  background: #e9defd;
}
.uThree {
  background: #c0def6;
}
.uFour {
  background: #d9f7b2;
}
#akce h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.cards {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.spacer {
  height: 50px;
}

.card {
  width: 380px;
  height: 520px;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 21px;
  border: 1px solid black;
  overflow: hidden;
}
.card1 {
  background-color: #f8f3e4;
  position: relative;
  margin-top: 0;
}

.card1::after {
  content: "";
  background: #f8f3e4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
.card2 {
  background-color: #c0def6;
  position: relative;
  margin-top: 20px;
}

.card2::after {
  content: "";
  background: #c0def6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
.card3 {
  background-color: #e9defd;
  position: relative;
  margin-top: 40px;
}

.card3::after {
  content: "";
  background: #e9defd;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
.date {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1rem;
  background: red;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  border: 1px solid black;
  z-index: 2;
  font-weight: 600;
  font-size: 0.8rem;
}
.card1 .date {
  background: #beddf7;
}
.card2 .date {
  background: #e9defd;
}
.card3 .date {
  background: #f8f3e4;
}
.textCard {
  position: absolute;
  bottom: 30px;
  margin-left: 1.4rem;
  z-index: 3;
}
.textCard h4 {
  font-size: 1.75rem;
}
.textCard p {
  max-width: 90%;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
.textCard a {
  background: #beddf7;
  color: black;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 15px;
  border: 1px solid black;
}
.card2 #open {
  background: #e9defd;
}
.card3 #open {
  background: #f8f3e4;
}
#open {
  transition: opacity 0.2s ease;
  font-size: 1.3rem;
}
#open:hover {
  opacity: 0.7;
}
#jidelnicek {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#jidelnicek h3 {
  font-size: 3rem;
  text-align: center;
}
.datum {
  font-size: 1.2rem;
}
.jidelnicek {
  width: 800px;
}
.cast {
  width: 800px;
  height: 130px;
  background: red;
  border-radius: 14px;
  border: 2px solid black;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  margin-top: 2rem;
}
.cast .text {
  max-width: 100%;
  margin: 1.5rem;
}
.cast1 {
  background: #fbc590;
  height: auto;
}
.cast2 {
  background: #ded3ff;
}
.cast3 {
  background: #bbd0ff;
}
.text h4 {
  font-size: 1.4rem;
}
.text {
  margin-left: 1.5rem;
}
.alergeny {
  font-size: 1.2rem;
}
.icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 1px solid black;
  border-radius: 100%;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  display: none;
}
.button-div {
  margin-top: 1rem;
  width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.button-div a {
  color: black;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border: 1px solid black;
  border-radius: 25px;
  font-weight: 600;
  transition: opacity ease 0.2s;
}
.button-div a:first-child {
  background-color: #fff7e3;
}
.button-div a:nth-child(2) {
  background-color: #ffbef1;
}
.button-div a:hover {
  opacity: 0.7;
}
#cenik {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
.cenikWrapper {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
}
.cenikTextContent h4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.cenikTextContent p {
  font-size: 1.2rem;
  max-width: 400px;
}
.cenikItself {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 90%
}
.part {
  width: 550px;
  height: 100px;
  max-width: 100%;
  border: 2.5px solid black;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.part1 {
  background: #d1f3dc;
  transform: translateX(-10px);
}
.part2 {
  background: #f0ddfc;
}
.part3 {
  background: #ffefc4;
  transform: translateX(-20px);
}
.part h4 {
  font-size: 1.4rem;
}
.partText {
  margin-left: 1.5rem;
}
.castka {
  margin-right: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}
#kontakt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
#kontakt h3 {
  font-size: 3rem;
}
#kontakt p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 300px;
  margin: 0 auto;
}
label {
  font-weight: 600;
  margin-top: 1rem;
  text-align: left;
}
input {
  min-width: 600px;
  height: 50px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid black;
}
textarea {
  min-width: 600px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid black;
  height: 300px;
  resize: vertical;
}
form button {
  padding: 0.8rem 1.4rem;
  border-radius: 20px;
  border: 1px solid black;
  outline: none;
  cursor: pointer;
  background: #e9ddfd;
  margin-top: 1rem;
  transform: scale(1.2);
  font-weight: 600;
  transition: 0.2s opacity ease;
}
form button:hover {
  opacity: 0.7;
}
.card-background {
  position: relative;
  overflow: hidden;
}

.card-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4; /* Adjust the opacity here */
  z-index: 1; /* Place below content */
}

.card-background::before {
  background-image: var(--background-image);
}

footer {
  padding: 40px 4vw;
  background: #f7f0df;
  border-radius: 20px 20px 0px 0px;
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.cl1 a:first-child {
  padding: 0.8rem 1.6rem;
  background: #ddf9fd;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.2s ease opacity;
  color: black;
  text-decoration: none;
  border: 1px solid black;
  margin-bottom: 2rem;
}
.cl1 p {
  font-size: 1.2rem;
  font-weight: 600;
}
.cl1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 33%;
}
.cl1 a:first-child:hover {
  opacity: 0.8;
}
.cl2 {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.cl2 p {
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 2rem;
}

.cl2 img {
  width: 500px;
  mix-blend-mode: multiply;
}
.linkImg {
  width: 40px;
}
.cl2 img:nth-child(1) {
  width: 100px;
}
.cl3 {
  width: 33%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cl3 a:first-child {
  padding: 0.8rem 1.6rem;
  background: #ddf9fd;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.2s ease opacity;
  color: black;
  text-decoration: none;
  border: 1px solid black;
  margin-bottom: 2rem;
}
.cl3 a:first-child:hover {
  opacity: 0.7;
}
.cl3 {
  flex-direction: column;
}
.more-actions {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-width: 500px;
}

.more-actions.expanded {
  max-height: 500px;
}


@media only screen and (max-width: 1400px) {
  .cl3 a img {
    width: 300px;
  }
  .cl1 a img {
    width: 300px;
  }
}
@media only screen and (max-width: 1300px) {
  .link a {
    font-size: 0.7rem;
    margin-inline: 0.3rem;
    padding: 0.6rem 0.8rem;
  }
  .primary a {
    font-size: 0.7rem;
    margin-inline: 0.3rem;
    padding: 0.6rem 0.8rem;
  }
  .cards,
  .cenikWrapper,
  .content {
    width: 90%;
  }
  
}
@media only screen and (max-width: 1192px) {
  .card {
    width: 300px;
    height: 411px;
  }
  .textCard {
    margin-right: 0.3rem;
  }
  .cl3 a img {
    width: 200px;
  }
  .cl1 a img {
    width: 200px;
  }
  .cl2 img {
    width: 200px;
  }
  .cl3 a img,
  .cl1 a img,
  .cl1 p {
    display: none;
  }
}
@media only screen and (max-width: 1109px) {
  .cenikWrapper {
    flex-direction: column;
  }
  .cenikItself{
	width:100%;
	}
  .cenikTextContent {
    margin-bottom: 3rem;
    text-align: center;
  }
  .link a {
    font-size: 0.7rem;
    margin-inline: 0rem;
    padding: 0.5rem 0.6rem;
  }
  .primary a {
    font-size: 0.7rem;
    margin-inline: 0rem;
    padding: 0.5rem 0.6rem;
  }
}
@media only screen and (max-width: 1000px) {
  .card1,
  .card2,
  .card3 {
    margin-top: 1rem;
  }
  .cards {
    flex-direction: column;
  }

  .card {
    height: 520px;
    width: 380px;
  }
  .card h4 {
    font-size: 2rem;
  }
  .card p {
    font-size: 1.2rem;
  }
  .textCard {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 940px) {
  
  section {
  padding: 80px 4vw 0 4vw;
  }
	
  #kontakt {
	  padding-bottom: 80px;
	}
	
  #plan .content {
    flex-direction: column-reverse;
  }
  .rightText {
    margin-bottom: 3rem;
  }
	
  .rightText {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
	margin-left: 0;
	justify-content: center;
	align-items: center;
	align-content: center;
	}
  .rightText ul {
	max-width: 450px;
	}
	
  .rightText h3 {
    text-align: center;
  }
  .spacer {
    height: 200px;
  }
  .textContent {
    margin-left: 2rem;
  }
  .slideTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .slideSubtitle {
    font-size: 1rem;
    max-width: 80%;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 825px) {
  .jidelnicek {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .cast,
  .button-div {
    width: 600px;
  }

}
@media only screen and (max-width: 700px) {
  .jidelnicek {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .cast,
  .button-div {
    width: 500px;
  }
  #akce h3,
  #ucitele h3 {
    font-size: 2.5rem;
  }
  .leftImage {
    width: 400px;
  }
  .rightText {
    margin-left: 0rem;
  }
  .cast h4 {
    font-size: 1.4rem;
  }
  .leftImage {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .castka {
	text-align: right;
  }
}
@media only screen and (max-width: 600px) {
  .part1,
  .part2,
  .part3 {
    transform: translateX(0px);
  }
  .part {
    width: 500px;
  }
  input,
  textarea {
    max-width: 600px;
    min-width: 400px;
  }
  #kontakt p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 70%;
  }
  .cards,
  .cenikWrapper,
  .content {
    width: 100%;
  }
  .icon {
    width: 40px;
    height: 40px;
  }
  .icon img {
    width: 20px;
    height: 20px;
  }
	
  .rightText h3,
  #kontakt h3,
  #akce h3,
  #ucitele h3 {
	font-size: 2.5rem;
  }
  .castka {
	text-align: right;
  }
}

@media only screen and (max-width: 506px) {
  .part1,
  .part2,
  .part3 {
    transform: translateX(0px);
  }
  .part,
  .cast,
  .button-div {
    width: 400px;
	
  }

  .cast h4 {
    font-size: 1rem;
  }
  .part h4 {
    font-size: 1rem;
  }
  .part p {
    font-size: 0.8rem;
  }
  .castka {
    font-size: 1.1rem;
  }
  .leftImage img {
    width: 350px;
  }
  .rightText {
    margin: 2rem;
  }
  .rightText h3 {
    font-size: 2rem;
  }
  #kontakt h3,
  #akce h3,
  #ucitele h3 {
    font-size: 2rem;
  }
  #jidelnicek h3 {
    font-size: 2rem;
  }
  .cenikTextContent h4 {
    font-size: 2rem;
  }
  .cenikTextContent {
    font-size: 1rem;
  }
	
  .castka {
	text-align: right;
  }
	
  #logo img {
    width: 200px;
  }
  #logo {
    margin-left: 1rem;
  }
  footer {
    flex-direction: column;
  }
  .cl2 p {
	margin-top:0;	
  }
  .cl3,
  .cl1 {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: start;
  }
}
@media only screen and (max-width: 400px) {
  .part,
  .cast,
  .button-div {
    width: 300px;
  }

  #actionBar {
    font-size: 0.8rem;
  }
  .slideTitle {
    font-size: 2.5rem;
  }
  .slideSubtitle {
    font-size: 1rem;
  }
  .slider-dots {
    display: none;
  }
  .leftImage img {
    width: 280px;
  }
  .rightText {
    margin: 1rem;
  }
  .rightText h3 {
    font-size: 2rem;
  }
  #akce h3,
  #ucitele h3 {
    font-size: 2rem;
  }
  .card {
    width: 290px;
    height: 397px;
  }
  .textCard h4 {
    font-size: 1.4rem;
  }
  .textCard p {
    font-size: 1rem;
  }
  .jidelnicek .icon {
    display: none;
  }
  .button-div {
    font-size: 0.8rem;
  }
  .cenikTextContent h4 {
    font-size: 2rem;
  }
  .cenikTextContent p {
    font-size: 1rem;
  }
  .part {
    width: 290px;
  }
  .part h4 {
    font-size: 0.9rem;
  }
  .castka {
    font-size: 1rem;
	text-align: right;
  }
  #kontakt h3 {
    font-size: 2rem;
  }
  #kontakt p {
    font-size: 1rem;
  }
  input,
  textarea {
    min-width: 290px;
  }
  .ucText {
    font-size: 1.5rem;
  }
  .ucitelka {
    height: 300px;
  }
  .ucImg {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (min-width: 2000px) {
  .spacer {
    display: none;
  }
  .leftImage img {
    width: 600px;
  }
  .rightText h3,
  #akce h3 {
    font-size: 3rem;
  }
  #akce h3 {
    margin-bottom: 2rem;
  }
  .rightText p,
  .rightText li {
    font-size: 1.3rem;
  }
  .card {
    width: 480px;
    height: 620px;
  }
  .textCard {
    margin-bottom: 2rem;
  }
  .textCard h4 {
    font-size: 2rem;
  }
  .textCard p {
    font-size: 1.2rem;
  }
  .cast,
  .button-div {
    width: 900px;
  }
  #jidelnicek h3 {
    font-size: 3rem;
  }
  .jidelnicek {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .part {
    width: 700px;
  }
  #cenik {
    display: flex;
    align-items: center;
    justify-content: center;
  }
	
  #kontakt {
	margin-bottom: 80px;
  }
	
  #kontakt h3 {
    font-size: 3rem;
  }
  #kontakt form {
    transform: scale(1.2);
	margin-top: 3rem;
	
  }
  .spacer {
    height: 0px;
  }
}
#popup-container {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(78, 78, 78, 0.212);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
}
#popup {
  width: 500px;
  height: 370px;
  background: white;
  color: black;
  border: 1px solid black;
  border-radius: 21px;
  z-index: 6;
  position: relative;
}
.Ptext {
  margin: 2rem;
}
#PTitle {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#PSubTitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.num {
  font-size: 3rem;
  border-bottom: 2px solid black;
  text-decoration: none;
  color: black;
}
#closePopup {
  padding: 0.6rem 1.1rem;
  background: #bbd0ff;
  border: 1px solid black;
  border-radius: 21px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#closePopup:hover {
  opacity: 0.7;
}
.fade-in {
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media only screen and (max-width: 400px) {
  .num {
    font-size: 2rem;
  }
  #PTitle {
    font-size: 1.3rem;
  }
  #PSubTitle {
    font-size: 1rem;
  }
}
/* Hide links and display hamburger icon on smaller screens */
#links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 2rem;
}

#hamburger-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  margin-right: 1rem;
}

#mobile-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 60px;
  list-style: none;
  z-index: 2000;
}

#mobile-links li {
  padding: 15px;
}

#mobile-links li a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

#mobile-links.open {
  transform: translateX(0);
}

@media (max-width: 956px) {
  #links {
    display: none;
  }
  #hamburger-icon {
    display: block;
  }
  #mobile-links a {
    margin-inline: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }
}
@media (max-height: 600px) {
  section {
    margin-bottom: 10rem;
  }
}
