body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: black;
  z-index: 4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header h1 {
  margin: 0;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333333;
  font-family: arial;
}
.header img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.heading {
  display: inline-block;
  margin: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333333;
}

.content {
  position: relative;
  height: 100vh;
  padding-top: 10vh; /* Adjust to match header height */
  overflow: auto;
}

.image-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-carousel img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.image-carousel img.active {
  opacity: 1;
  z-index: 1;
  object-fit: cover;
}

.footer {
  background-color: tan;
  padding: 5% 10%;
  text-align: center;
  position: absolute;
}

.footer img {
  height: 10%; /* Adjust as needed */
  width: 10%; /* Adjust as needed */
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 5%; /* Adjust as needed */
}

.footer a {
  margin: 2%;
  color: #333333;
  text-decoration: none;
}

.footer p {
  margin: 1% 0;
  color: #666666;
}

.footer .address {
  font-size: 2.5vw; /* Adjust as needed */
  font-style: italic;
}

.footer .hours {
  font-size: 2.5vw; /* Adjust as needed */
}

.footer .hours strong {
  font-weight: bold;
}

.overlay-image {
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  height: 25%;
  width: 30%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 11;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: grey;
  margin-bottom: 5px;
}

.menu {
  display: none;
  text-decoration: none;
  z-index: 99;
}

.menu ul {
  padding: 0;
  margin: 0;
  font-family: Comic Sans MS, sans-serif;
  text-decoration: none;
  color: #333333;
}

.menu li {
  padding: 10px;
  border-radius: 20px; /* Adds rounded borders */
  margin-bottom: 5px;
  text-decoration: none;
  background-color: #333333;
  font-family: Comic Sans MS, sans-serif;
  font-size: 18px;
}
.menu li a {
  text-decoration: none;
  color: white;
}

.call-now-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50%;
  background-image: linear-gradient(
    to right,
    #ff0018,
    #ffa52c,
    #ffff41,
    #008018,
    #0000f9,
    #86007d
  );
  color: #333333;
  font-family: Comic Sans MS, sans-serif;
  font-size: 24px;
  text-decoration: none;
  margin-right: 10px;
  position: absolute;
  top: 10px;
  right: 0;
}

.rainbow {
  background-image: linear-gradient(
    to right,
    #ff0018,
    #ffa52c,
    #ffff41,
    #008018,
    #0000f9,
    #86007d
  );
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 5px;
  color: #333333;
  font-family: Comic Sans MS, sans-serif;
  font-size: 24px;
  text-decoration: none;
}

.about-section {
  background-color: #f9f9f9;
  padding-top: 10vh;
  z-index: 8;
  padding: 5vh;
}

.about-section h2 {
  font-size: 6vw;
  margin-bottom: 2%;
}

.about-section p {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 3%;
}

.about-section .highlight {
  font-weight: bold;
  color: lightskyblue;
}

.about-section .age-restriction,
.about-section .smoking-policy {
  font-size: 1.6vw;
  margin-top: 3%;
}

.about-section .footer-note {
  font-size: 1.4vw;
  font-style: italic;
  margin-top: 3%;
}

.image-carousel-events {
  object-fit: contain;
  width: 200px;
  height: 200px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20vh;
}

.gallery-item {
  flex: 1 0 calc(33.33% - 20px); /* Adjust the width as needed */
  margin: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .gallery-item {
    flex-basis: calc(50% - 20px); /* Adjust the width as needed */
  }
  .content {
    padding-top: 10vh;
  }
  .about-section {
    padding-top: 10vh;
  }
}

@media screen and (max-width: 480px) {
  .gallery-item {
    flex-basis: calc(100% - 20px); /* Adjust the width as needed */
  }
  .content {
    padding-top: 15vh;
  }

  .about-section {
    padding-top: 10vh;
  }
}
/* Media queries */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .content {
    padding-top: 10vh;
  }

  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 10px;
    list-style: none;
    text-decoration: none;
  }

  .menu.show {
    display: flex;
    flex-direction: column;
    list-style: none;
    text-decoration: none;
  }

  .menu ul {
    flex-direction: column;
    list-style: none;
    text-decoration: none;
  }

  .menu ul li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .about-section {
    font-size: 21px;
    padding: 10vh;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-section {
    font-size: 21px;
    padding-top: 10vh;
    padding: 5vh;
  }
  .content {
    padding-top: 10vh;
  }
}

@media screen and (min-width: 1025px) {
  .about-section {
    font-size: 21px;
    padding-top: 10vh;
    padding: 5vh;
  }
  .content {
    padding-top: 10vh;
  }
}
