* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
  }
  .menu {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 40px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    transition: left 0.4s ease;
    z-index: 999;
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .sidebar .close-btn {
    font-size: 1.2rem;
    margin-bottom: 30px;
    cursor: pointer;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .sidebar ul li {
    margin: 15px 0;
  }
  
  .sidebar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: 0.3s;
  }
  
  .sidebar ul li a:hover {
    color: orange;
  }
  
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo img {
  
    height: 110px; /* Adjust size to your liking */
    object-fit: contain;
  }
  
  .top-buttons a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .book-btn {
    background: orange;
    padding: 10px 20px;
    border-radius: 5px;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slides {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 30px 40px;
    border-radius: 10px;
  }
  
  .caption p {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .caption h1 {
    font-size: 3rem;
    color: orange;
  }


  .top-buttons a:hover,
.menu:hover {
  color: orange;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #ff6600; /* darker orange */
  color: white;
  transition: 0.3s ease;
}
  
  .fade {
    animation: fadeEffect 1.5s ease-in-out;
  }
  
  @keyframes fadeEffect {
    from {opacity: .6}
    to {opacity: 1}
  }

  @media (max-width: 768px) {
    .navbar {
      flex-direction: row;
      
      padding: 30px 5px;
    }
  
    .logo img {
      height: 80px;
      
    }
  
    .top-buttons  {
      display:flexbox;
    
      font-size: .8rem;
    }
  
    .menu {
      font-size: 2.2rem;
    }
  
    .slider h1 {
      font-size: .8rem;
      padding: 0 10px;
      text-align: center;
    }
  
    .sidebar {
      width: 35%;
      padding: 10px 10px;
    }
  
    .sidebar ul li a {
      font-size: 1rem;
    }
  
    .slider {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      } 
  }
/* menu */
.menu-section {
  padding: 50px 20px;
  background:  rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* .section-title {
  font-size: 36px;
  margin-bottom: 30px;
  text-decoration: underline;
} */

.filter-buttons {
  margin-bottom: 30px;
}

.filter-btn {
  background: #fff;
  border: 2px solid #333;
  color: #333;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #333;
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 15px 0;
  font-size: 20px;
  color: #333;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}




  /* about us */
  .background-section {
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 20px;
    position: relative;
   
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    padding: 60px 20px;
    border-radius: 10px;
  }
   
/* Section Title */
.section-title {
  text-align: center !important;
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-decoration-line: underline;
  color: #fff !important;
}

/* About Containers */
.about-container,
.about-extra-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 40px 10px;
  align-items: center;
  justify-content: space-between;
}

/* About Text */
.about-text {
  flex: 1;
  min-width: 300px;
  color: white;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text p,
.about-text ul {
  font-size: 16px;
  line-height: 1.6;
}

/* About Image */
.about-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Stack image and text */
  .about-container,
  .about-extra-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  /* Make images bigger on mobile */
  .about-image {
    flex: 1 1 100%;
    padding: 0; /* Remove extra padding for full width */
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  /* For alternate layout in extra section */
  .about-extra-content {
    flex-direction: column-reverse;
  }
}

  /* our special */
  .our-special {background: url('background3.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 20px;
    position: relative;
    color: black;
    text-align: center;
    
  }
  
  
  .our-special h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    /* color: #222; */
    text-decoration: underline;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
  }
  
  .specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .special-item {
    max-width: 350px;
    padding: 20px;
  }
  
  .special-item img {
    width: 200x;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 5px;
  }
  
  .special-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    /* color: #444; */
  }
  
  .special-item p {
    /* color: #555; */
    font-size: 0.95rem;
    text-align: justify;
  }
   /* testimonial and galery */
   .testimonial-gallery-section {
    display: flex;
    gap: 10px;
    padding: 50px 1%;
    /* background-color: #fef8f1; */
    flex-wrap: wrap;
  }
  
  
  
  .gallery-column {
    flex: 1;
    min-height: 350px;
    width:99%;
    /* background-color: #fff3e0; */
  }
  
  .gallery-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #b84e00;
    text-align: center;
    text-decoration: underline;
  }
  


.gallery {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); */
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 90px;
  gap: 10px;
  padding: 2px;
  text-align: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}
/* Fullscreen popup modal */
#imageModal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

/* Popup image */
#imageModal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Close button */
#imageModal span {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.view-more-btn {
  margin-top: 30px;
}

.view-more-btn button {
  background-color: #b3541e;
  color: #fff;
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more-btn button:hover {
  background-color: #a0410c;
}
/* Location Title */
.location {
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: underline;
}

/* Locations Section */
.locations-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background-color: hsl(0, 0%, 98%);
  padding: 20px;
}

/* Individual Location Box */
.location-box {
  display: flex;                /* info + map side by side */
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex: 1 1 45%;                /* takes around 45% width */
  max-width: 600px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.location-box:hover {
  transform: scale(1.02);
}

/* Location Info */
.location-info {
  flex: 1; /* takes available space */
  padding: 10px;
}

.location-info h3 {
  color: #e67e22;
  margin-bottom: 10px;
}

.location-info p {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
}

.location-info i {
  color: #e67e22;
  margin-right: 6px;
}

/* Google Map */
.location-box iframe {
  flex: 1;
  width: 100%;
  min-width: 250px;
  height: 220px;
  border: 0;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 750px) {
  .location-box {
    flex: 1 1 100%;            /* full width on small screens */
    max-width: 100%;
    flex-direction: column;    /* stack info above map */
    align-items: center;
    text-align: center;
  }

  .location-box iframe {
    width: 100%;
    height: 250px;
    margin-top: 15px;
  }

  .location-info {
    padding: 5px;
  }
}



/* footer */
.footer {
  background-color: black;
  color: white;
  padding: 20px 10%;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h2, .footer-box h3 {
  margin-bottom: 15px;
  color: orange;
}

.footer-box p, .footer-box li {
  margin: 8px 0;
}

.footer-box a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box a:hover {
  color: orange;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color:orange;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
}

