html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: black;
}
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: white;
}
.content {
  background-color: black;
}
.content-body {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
}
.content-body .content {
  flex-grow: 1;
}
.content-body .sidenav {
  flex: 0 0 200px;
  position:relative;
  position:sticky;
  top:0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            border-right: 5px solid black;
}
.menu-content {
  flex: 1;
}
.logo img {
  height: 200px; 
}
.photo-gallery {
  display: flex;
  gap: 5px;
}
.column {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 19%;
}
.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu a {
  text-decoration: none;
  /* color: white; 
  font-size: 25px;
  padding: 10px 15px;
  border-radius: 5px;
  white-space: normal;
  overflow-wrap: break-word; */
  display: block;
  padding: 0.5rem 0;
  font-size: 1.4rem;
  color: white;
  text-align: center;
}
/* .menu a:hover {
  background: #f15f04; */
/* } */
.menu a:hover {
  color: #ff33bb;
  transition: 0.2s;
}
.menu a.active {
  color: #ff00aa;
  font-weight: bold;
}
.social {
  margin-top: auto;
}
.social a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social img {
  width: 24px;
  height: 24px;
}
header {
  display: none;
}
@media screen and (max-width: 480px) {
  .logo img {
      height: 100px;
  }
  .content-body .sidenav {
    display: none;
  }
  header {
    display: flex
  }
}
.menu-content-hamburger {
  width: 100px;
}
.menu-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.menu_hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding-top: 60px;
  box-shadow: -2px 0 5px rgba(255, 127, 50, 0.5);
}
.menu_hamburger a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 20px;
}
.menu_hamburger a:hover {
  background-color: #ff7f32;
}
.lazy img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.eager img {
  transition: opacity 0.5s ease-in-out;
}
img.fade-in {
  opacity: 1;
}
h1, h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.faq-section {
  margin-top: 20px;
}
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}
.faq-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.faq-item p {
  text-align: left;
  font-size: 14px;
  margin: 0;
  padding: 5px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-content {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  width: 300px;
  box-sizing: border-box;
  overflow: hidden;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.price {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}
.book-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff00aa;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.info-section {
  max-width: 700px;
  margin: 2rem auto;
  line-height: 1.6;
  text-align: center;
}
footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: black;
    display: flex;
    align-items: center;
    /* padding: 10px; */
  }

  .content-body {
    margin-top: 120px;
  }
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.card ul {
  text-align: left;
  padding-left: 20px;
  margin: 0 0 1rem 0;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

a.button-link {
  color: #ff00aa;
  text-decoration: none;
}

a.button-link:hover {
  color: #ff33bb;
  text-decoration: underline;
}