body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

h1 {
  font-size: 48px;
}

p {
  font-size: 21px;
}

footer p {
  font-size: 16px;
}

.intro {
  margin-left: 199px;
  margin-right: 199px;
  color: black;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px; /* Add padding */
  border-radius: 15px; /* Rounded corners */
}

header {
  background-color: white;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-top: 33px;
  padding-bottom: 27px;
}

header .logo-container {
  background-color: white;
}

header .logo {
  height: 200px;
  transition: height 0.3s ease;
}

header.scrolled .logo {
  height: 45px;
}

header.scrolled .menu-icon {
  font-size: 30px;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

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

nav ul li {
  margin: 20px 15px;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.menu-icon {
  display: none;
  font-size: 40px;
  color: black;
  cursor: pointer;
}

.section {
  padding: 50px 20px;
  text-align: center;
  /* background-color: #fff; */
  background-color: #f4f4f4;
  border: none;
}

.about-section {
  background: url('./images/carousel/IMG_0247-min.png') no-repeat center center;
  background-size: cover;
  color: white;
  margin-top: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 768px;
}

#menu {
  margin-top: 66px;
  margin-bottom: 66px;
}

.menu-section .menu-image {
  width: 96%;
  height: auto;
  border-radius: 10px;  
}

#menu p {
  font-size: 14px;
}

.hours-section {
  background: url('./images/carousel/IMG_0288-min.png') no-repeat center center;
  background-size: cover;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 768px;
}

#opening-hours-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px; /* Add padding */
  border-radius: 15px; /* Rounded corners */
}

.social-links img {
  width: 40px;
  margin: 0 10px;
  transition: transform 0.3s;
  margin-bottom: 66px;
}

.social-links img:hover {
  transform: scale(1.2);
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 45px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.carousel-slides {
  display: flex;
  overflow: hidden;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  border-radius: 15px;
  object-fit: contain;
  max-height: 768px;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 10px;
  padding: 15px 20px;
}

/* Add this to your existing CSS file */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.fullscreen-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.fullscreen-modal.show {
  display: flex;
}

/* Add this to your existing CSS file */
.phone-link {
  color: white;
  text-decoration: none;
}

.phone-link:visited {
  color: white;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}


@media (max-width: 1200px) {

  .carousel-buttons {
    margin-top: 5px;
    margin-bottom: 5px;
  }



  .intro {
    margin-left: 33px;
    margin-right: 33px;
  }

  header {
    padding-top: 7px;
    padding-bottom: 3px;
  }

  nav ul {
      flex-direction: column;
      display: none;
      background-color: #333;
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      justify-content: center;
      align-items: center;
  }

  nav ul li {
      margin: 5px 0;
  }

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

  .menu-icon {
      display: block;
      position: relative;
      top: 10px;
      font-size: 50px;
      text-shadow: 0.5px 0.5px 1px #333;
      color:rgba(232, 111, 51, 0.9);
      margin-bottom: 33px;
  }

  nav ul.show {
      display: flex;
  }
}
