/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #211b1b;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3a1f1f;
  padding: 10px 20px;
  position: relative;
  z-index: 999;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  z-index: 1001;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 10px 12px;
  color: white;
}

/* Dropdowns for both desktop and mobile */
.dropdown-content {
  display: none;
  background: #5c3b3b;
  min-width: 150px;
  z-index: 1000;
  flex-direction: column;
}

.dropdown.open .dropdown-content {
  display: flex;
}

/* Desktop hover dropdowns */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .dropdown-content li a {
    padding: 10px;
    color: white;
  }

  .dropdown-content li a:hover {
    background: #6d4c4c;
  }
}

/* Banner */
.banner {
  position: relative;
}

.banner video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

/* Buttons */
.btn {
  background: rgba(255, 111, 36, 0.75);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}

.btn.red {
  background: rgba(255, 111, 36, 0.75);
}

.btn:hover {
  background: rgba(255, 111, 36, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Location Highlight */
.location-highlight {
  background: #382222;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
}

/* Sliders */
.image-slider .slider,
.thumbnail-slider .thumbnails,
.testimonial-box {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.slider img {
  width: 300px;
  border-radius: 8px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.thumbnail-slider .thumbnails {
  justify-content: center;
}

.thumbnail-slider .thumbnails img {
  height: 80px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  flex: 0 0 auto;
}
.delivery-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
}


/* Testimonials */
.testimonials-slider {
  background: #000;
  padding: 40px 20px;
}

.testimonial {
  background-color: #1a1a1a;
  padding: 24px;
  border-radius: 8px;
  flex: 0 0 auto;
  min-width: 500px;
  max-width: 600px;
  scroll-snap-align: start;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.testimonial h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #ff6f24; /* or any color you prefer */
}


.testimonial p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}

.testimonial .stars {
  color: gold;
  font-size: 1.2rem;
}
.testimonial-box::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .testimonial {
    min-width: 90%;
    max-width: 90%;
  }
}

/* Location & Hours */
.location-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background-color: #382222;
  text-align: center;
}


.location-hours .hours img {
  height: 40px;
  margin-bottom: 10px;
}

.location-hours ul {
  list-style: none;
  padding: 0;
}
.location-hours h4 {
  color: #ff6f24; /* or any color you'd like */
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Call to Action */
.call-action {
  text-align: center;
  padding: 20px;
}

.call-action .btn {
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #f97737;
  color: white;
}

footer a {
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    justify-content: center;
  }

  .logo {
    order: 2;
  }

  .menu-toggle {
    display: block;
    order: 1;
    position: absolute;
    top: 15px;
    left: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #3a1f1f;
    padding: 10px 20px;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    display: none;
    background-color: #4a2d2d;
    padding-left: 20px;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .testimonial {
    min-width: 80%;
  }

  .location-hours {
    flex-direction: column;
  }
}

.footer-highlight {
  color: black;
  font-weight: bold;
}
.reservation-widget {
  background-color: #382222;
  padding: 40px 20px;
  text-align: center;
}

.reservation-container {
  max-width: 700px;
  margin: 0 auto;
  background: #211b1b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.reservation-container h2 {
  color: #ff6f24;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.reservation-widget {
  background-color: #382222;
  padding: 40px 20px;
  text-align: center;
}

.reservation-container {
  max-width: 700px;
  margin: 0 auto;
  background: #211b1b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.reservation-container h2 {
  color: #ff6f24;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-section {
  padding: 60px 20px;
  background-color: #211b1b;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
  color: white;
}

.about-text h2 {
  color: #ff6f24;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.pdf-menu-section {
  background-color: #211b1b;
  padding: 40px 20px;
  text-align: center;
}

.pdf-menu-section h2 {
  color: #f97737;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.menu-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.menu-links a {
  background: #f97737;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.menu-links a:hover {
  background: #e7651f;
}

.image-menu-section {
  background-color: #211b1b;
  padding: 40px 20px;
  text-align: center;
}

.image-menu-section h2 {
  color: #f97737;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.menu-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.menu-links .btn {
  background-color: #8b3a3a;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.menu-links .btn.red {
  background-color: #ff6f24;
}

.menu-links .btn:hover {
  background-color: #a04545;
}

.menu-image-wrapper {
  margin-bottom: 60px;
}

.menu-image-wrapper h3 {
  color: #f97737;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.menu-image-wrapper img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border: 2px solid #ff6f24;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.gallery-section {
  background-color: #211b1b;
  padding: 40px 20px;
  text-align: center;
}

.gallery-section h2 {
  color: #f97737;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ff6f24;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  object-fit: cover;
}
.contact-section.no-form {
  display: flex;
  flex-wrap: wrap;
  background-color: #211b1b;
  color: white;
  padding: 40px 20px;
  gap: 10px; /* Reduced gap */
  justify-content: center;
  text-align: center;
  align-items: center; /* Aligns both vertically */
}

.contact-info {
  flex: 1 1 400px;
  max-width: 600px;
}

.contact-info h2 {
  color: #f97737;
  margin-bottom: 25px;
  font-size: 2rem;
}

.contact-detail p {
  margin: 0;
  font-size: 1rem;
  color: white;
  line-height: 1.4;
}

.contact-detail img {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.contact-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  display: block;
}


@media (max-width: 768px) {
  .contact-section.no-form {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .contact-detail img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .map-section {
    margin-bottom: 20px; /* Reduce space below the map */
  }

  .contact-section.no-form {
    margin-top: 0; /* Eliminate unnecessary top spacing */
    padding-top: 20px; /* Optional: reduce top padding */
  }
}
.contact-section.no-form {
  padding-bottom: 10px; /* or even 10px */
  margin-bottom: 0;
}
