* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

/* Desktop Styles */
header {
  background: linear-gradient(to right, #1b2a38, #243a4a);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
  FONT-FAMILY: emoji;
}

header a:hover {
  color: #fece0c;
}

.nav-content {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-content .left, 
.nav-content .right {
  display: flex;
  gap: 15px;
}

.center img{
  height: 58px;
}


/* Hide menu button in desktop view */
.menu-toggle {
  display: none;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block; /* Show the menu button */
    align-self: flex-end;
  }

  #menu-btn {
    background: none;
    border: none;
    font-size: 39px;
    color: white;
    cursor: pointer;
    margin-right: 15px;
    
  }

  .nav-content {
    display: none; /* Hide the navigation links initially */
    flex-direction: column; /* Stack items vertically */
    gap: 10px;
    width: 100%;
    background-color: #243a4a;
    padding: 10px 20px;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .nav-content.show {
    display: flex; /* Show navigation links when toggled */
  }

  .nav-content a {
    font-size: 1rem;
    text-align: left;
  }
  .center img{
    height: 50px;
    position: absolute;
    left: 24px;
    top: 28px;
  }
}



.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.banner .overlay h1 {
  font-size: 9rem;
  margin-bottom: 20px;
  font-family: math;
}

.banner .overlay .btn {
  padding: 10px 30px;
  background-color: #fece0c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  FONT-FAMILY: emoji;
}
.overlay p {
    font-size: xxx-large;
    position: absolute;
    top: 102px;
    left: 533px;
    font-weight: 700;
    FONT-FAMILY: emoji;
}


.banner .overlay .btn:hover {
  background-color: #fece0c;
}

.section {
  text-align: center;
  padding: 50px 20px;
}

.section h2 {
  font-size: 2.5rem;
  color: #243a4a;
  margin-bottom: 20px;
  FONT-FAMILY: emoji;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
  FONT-FAMILY: emoji;
}




footer {
  background-color: #213544; /* Navy Blue Background */
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: bold;
  FONT-FAMILY: emoji;
}

.footer-column p,
.footer-column a {
  margin: 5px 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
  FONT-FAMILY: emoji;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-contact {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-email {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #fece0c;
  padding-top: 15px;
  font-size: 0.85em;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}



.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  FONT-FAMILY: emoji;
}

.social-icons a:hover {
  color: #394867;
}

@media (max-width: 768px) {
  .banner .overlay h1 {
    font-size: 6rem;
  }

  .cards img {
    max-width: 100%;
  }
  
}

@media (max-width: 480px) {
  
  
  .overlay p{
    font-size: xx-large;
    position: absolute;
    top: 140px;
    left: 58px;
    font-weight: 700;
    FONT-FAMILY: emoji;
  }
  
  

}


.vid {
  height: 300px;
}
.vid:hover{
  transform: scale(1.08);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.video-main{
  display: flex;
  gap: 73px;
  justify-content: center;
  padding: 33px;
}

/* Responsive Styles */

/* For screens 768px or smaller (tablets and mobile devices) */
@media (max-width: 768px) {
  .vid-con {
    display: grid; /* Switch to grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two videos per row */
    gap: 20px; /* Reduce the gap between items */
    justify-content: center; /* Center the grid items */
  }
}

/* For screens 480px or smaller (small mobile devices) */
@media (max-width: 480px) {
  
    .vid-con {
      flex-wrap: wrap;
      padding: 0;

  }
  .vid:hover{
    transform: scale(1.08);
      -webkit-transition: all 1s ease;
      -moz-transition: all 1s ease;
      -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
      transition: all 1s ease;
  }
  .video-main {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      justify-content: center;
  }
  

  .vid-con video {
    height: 200px; /* Adjust video height for smaller screens */
    width: 111px;

  }
}


/* General Styles */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f8f8f8;
}

.menu-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex: 1;
  max-width: 600px;
}

.menu-images img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.menu-text {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.menu-text h2 {
  font-size: 45px;
  color: #333;
  margin-bottom: 0;
  FONT-FAMILY: emoji;
  margin-right: 211px;
  margin-bottom: -40px;
}

.menu-text h1 {
  font-size: 55px;
  color: #fece0c;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
  FONT-FAMILY: emoji;
}

.menu-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  FONT-FAMILY: emoji;
}

.menu-button {
  display: inline-block;
  background-color: #fece0c;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  FONT-FAMILY: emoji;
}

.menu-button:hover {
  background-color: #1e303f;
}

/* Responsive Styles */

/* For screens 768px or smaller (tablets and mobile devices) */
@media (max-width: 768px) {
  .menu-section {
    padding: 30px;
  }

  .menu-images {
    grid-template-columns: 1fr; /* Single column for images */
    max-width: 100%; /* Adjust to fit container */
  }

  .menu-images img {
    height: 150px; /* Reduce image height for smaller screens */
  }

  .menu-text {
    max-width: 100%; /* Full width */
    text-align: center;
  }

  .menu-text h1 {
    font-size: 26px; /* Reduce heading size */
  }

  .menu-text h2 {
    font-size: 26px;
    margin-bottom: -19px;
    margin-right: 87px
  }

  .menu-text p {
    font-size: 0.9rem; /* Slightly smaller paragraph text */
  }

  .menu-button {
    padding: 8px 16px; /* Smaller button size */
  }
}

/* For screens 480px or smaller (small mobile devices) */
@media (max-width: 480px) {
  .menu-text h1 {
    font-size: 26px; /* Further reduce heading size */
  }

  .menu-text h2 {
    font-size: 24px; /* Further reduce subheading size */
    margin-bottom: -13px;
  }

  .menu-text p {
    font-size: 0.85rem; /* Smaller paragraph text */
  }

  .menu-images img {
    height: 120px; /* Reduce image height */
  }

  .menu-button {
    padding: 6px 12px; /* Adjust button size */
    font-size: 0.9rem; /* Slightly smaller font */
  }
  
}

.culinary-section {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #fff;
  flex-wrap: wrap; /* Allows wrapping for mobile */
}

.culinary-text {
  max-width: 400px;
  text-align: left;
  flex: 1;
}

.culinary-text h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 0;
  FONT-FAMILY: emoji;
  margin-bottom: -64px;
}

.culinary-text h1 {
  font-size: 5rem;
  color: #fece0c;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
  FONT-FAMILY: emoji;
}

.culinary-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  FONT-FAMILY: emoji;
}

.reservation-link {
  text-decoration: none;
  color: #fece0c;
  font-weight: bold;
  border-bottom: 2px solid #fece0c;
  padding-bottom: 2px;
}
.reservation-link:hover {
  color: #1b2a38;
}

.culinary-carousel {
  position: relative;
  max-width: 500px;
  flex: 1;
}

.carousel-images {
  display: flex;
  border-radius: 10px;
  gap: 15px;
}

.carousel-images img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

/* Responsive Styles */

/* For screens 768px or smaller (tablets and mobile devices) */
@media (max-width: 768px) {
  .culinary-section {
    flex-direction: column; /* Stack content vertically */
    padding: 30px; /* Adjust padding */
  }

  .culinary-text {
    text-align: center; /* Center-align text for smaller screens */
    max-width: 100%; /* Full width */
  }

  .culinary-text h1 {
    font-size: 2.5rem; /* Adjust heading size for smaller screens */
  }

  .culinary-text p {
    font-size: 0.95rem; /* Slightly smaller text */
  }

  .culinary-carousel {
    max-width: 100%; /* Full width for carousel */
  }
}

/* For screens 480px or smaller (small mobile devices) */
@media (max-width: 480px) {
  .culinary-text h1 {
    font-size: 2rem; /* Further reduce heading size */
  }

  .culinary-text p {
    font-size: 0.9rem; /* Reduce text size */
  }

  .carousel-images {
    gap: 10px; /* Smaller gap for carousel images */
  }
  .carousel-images img {
    width: 100%;
    height: 250px; /* Set a consistent height */
    object-fit: cover; /* Ensures the image fills the area without distortion */
    border-radius: 10px; /* Optional: Keeps rounded corners */
  }
  .culinary-text h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
    FONT-FAMILY: emoji;
    margin-bottom: -19px;
  }
  
}

