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

header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: black;
  padding-left: 1vw;
  padding-right: 1vw;
}

header .logo {
  width: 15vw;
}

nav {
  right: 0;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.banner img {
  width: 100%;
  height: auto;
}

.content {
  text-align: center;
  margin: 40px 0;
}

.carousel-container {
  position: relative;
  width: 80%;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  gap: 10px; /* Adds space between slides */
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 32%; /* Ensures 3 slides are shown at all times */
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.description {
  position: absolute;
  bottom: 10px;
  left: 11%;
  width: 70%;
  background: white;
  padding: 4%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.carousel-arrow.left {
  left: -50px;
}

.carousel-arrow.right {
  right: -50px;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
}

.footer-logo {
  width: 20vw;
  margin-bottom: 1vh;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: auto;
}

.footer-content p {
  text-align: center;
  white-space: pre-line; /* Formats address into 3 rows */
}

.footer-content .social-icons {
  margin-left: auto;
}

.footer-content .social-icons img {
  width: 25px;
  margin-left: 10px;
}

@media (orientation: portrait) {
  header .top-bar {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: black;
    padding: 10px 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  /* Carousel */
  .carousel-container {
    width: 60%;
  }

  .carousel {
    gap: 0;
  }

  .slide {
    flex: 0 0 100%; /* Show only one image at a time */
  }

  .description {
    font-size: 14px;
    left: 3%;
    width: 90%;
    padding: 2%;
  }

  .carousel-arrow {
    padding: 10px;
    font-size: 18px;
  }

  /* Footer */
  

  .footer-content .social-icons {
    margin-top: 10px;
    justify-content: center;
  }
}