* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
  margin: 0;
}

.content {
  flex: 1; /* Allow the content area to grow and fill the available space */
}

/* Style the header */
header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #161d23;
  z-index: 999;
  transition: all 0.3s ease-in-out; /* Add a transition for smooth animation */
}

header.small {
  height: 125px; /* Adjust the height of the smaller header */
  backdrop-filter: blur(10px); /* Add blur effect to the smaller header */
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  background-color: rgba(22, 29, 35, 0.8); /* Adjust the background color and opacity of the smaller header */
}

header.small .logo img{
  height: 110px;
}

/* Style the logo */
.logo {
  display: flex; /* Align the logo horizontally */
  align-items: center; /* Vertically center the logo */
  margin-left: 50px;
}

.logo img {
  height: 150px; /* Set the desired height for the logo */
  width: auto; /* Let the width adjust automatically based on the height */
}

.logo a {
  text-decoration: none; /* Remove underline from the logo if it's a link */
  color: #000; /* Set the desired color for the logo text */
  font-size: 20px; /* Set the desired font size for the logo text */
  font-weight: bold; /* Set the desired font weight for the logo text */
}

/* Style the navigation menu */
nav ul {
  list-style: none;
  margin-right: 50px;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #bebebe; /* Set your desired color */
  text-transform: uppercase;
}
a.active,a:hover{
  background: none;
  color: #0082e6;
}
.checkbtn {
  font-size: 50px;
  color: #bebebe;
  line-height: 80px;
  cursor: pointer;
  display:none;
  margin-right: 30px;
  /* Remove float and margin-right properties */
}

#check {
  display: none;
}

/* Media query for mobile devices with screen width up to 900px */
@media (max-width: 900px) {
  header {
    padding: 10px;
  }

  .logo {
    margin-left: 20px;
  }

  .logo img {
    height: 150px;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 220px;
    background: #2c3e50;
    top: 80px;
    left: 0;
    text-align: center;
    display: none;
    flex-direction: column;
    margin-top: 90px;
  }

  header.small nav ul{
    margin-top: 40px;
  }
  nav ul li{
    display: block;
  }

  nav ul li a{
    font-size: 20px;
  }

  .checkbtn {
    display: block; /* Show the menu toggle button on mobile */
  }

  #check:checked ~ ul {
    left: 0; /* Show the navigation menu when the toggle button is checked */
  }
}

/* Style the slideshow */
.slideshow {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
  margin-top: 190px;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

/* Style the slideshow for 2k monitors */
@media (min-width: 2560px) {
  .slideshow {
    height: 1200px;
  }
}
@media (max-width: 900px){
  .slideshow{
    margin-top: 105px;
  }
}


/* Style the reservation button */
.button-container {
  text-align: center;
  margin-top: 20px;
}

.page-container .voucher {
  color: #2c3e50;
  text-align: center;
  font-size: 26px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-container {
  background-image: linear-gradient(45deg, #ffffff 0%, #f0f0f0 75%, #d8d8d8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px;
}

.button-container {
  text-align: center;
  padding: 20px;
}

.reservation-button {
  display: inline-block;
  padding: 20px 60px;
  background-color: #161d23;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 20px; /* Adjust the original font size as desired */
  transform: scale(1); /* Adjust the scale value as desired */
}

.reservation-button:hover{
  background-color: #000;
}

/* Mobile-specific styles */
@media (max-width: 900px) {
  .page-container {
      padding: 100px 20px; /* Adjust padding for smaller screens */
  }

  .button-container {
      text-align: center;
      padding: 20px;
  }

  .reservation-button {
      display: inline-block;
      padding: 30px 80px; /* Adjust padding for smaller screens */
      font-size: 22px; /* Adjust font size for smaller screens */
      border-radius: 20px;
      transform: scale(0.9); /* Adjust the scale value for a slightly smaller button */
  }
}

/* Style the footer */
footer {
  background-color: #161d23;
  color: #fff;
  text-align: left;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
}

.footer-item {
  margin-bottom: 10px;
}

.footer-item span {
  font-weight: bold;
}

.footer-item a {
  color: #686868;
  text-decoration: none;
}

.footer-item a img {
  height: 40px; /* Adjust the height as needed */
  width: auto; /* Allow the width to adjust automatically */
  margin-right: 5px; /* Add some spacing between the image and text */
}

.footer-item:last-child {
  justify-content: flex-end;
}

.footer-item a:hover {
  text-decoration: underline;
}

@media (max-width: 500px){
  .footer-content {
    margin-left: 5px;
  }
}

/* Úvod page */

.text-container {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}