body {
  margin: 0;
  font-family: Arial, sans-serif;

}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.order-banner {
  background-color: white;
  color: #b30000;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  font-size: 14px;
}

.order-banner a {
  color: #b30000;
  text-decoration: underline;
}

.order-banner a:hover {
  color: #ffcccb;
}

.order-banner {
  background-color: white;
  color: #b30000;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.order-banner a {
  color: #b30000;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.order-banner a:hover {
  color: #ffcccb;
}

.uber-icon {
  height: 50px;
  vertical-align: middle;
}




/* Nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #b30000; /* butcher red */
}

.logo img {
  height: 150px;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* Toggle Button for Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Toggle Button Style */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo img {
    height: 100px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #b30000;
    padding: 10px 0;
    gap: 10px;
  }

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

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
  }
}



/* Hero  */
.hero {
    background-image: url('/images/hero3.png'); /* Replace with your photo */
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .btn {
    background-color: #fff;
    color: #b30000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .btn:hover {
    background-color: #e6e6e6;
  }


  /* About us */
  .about {
    padding: 60px 30px;
    background-color: #ffffff;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 400px;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 32px;
    color: #b30000;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  

  /* Cuts */
  .products {
    padding: 60px 30px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .products h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #b30000;
  }
  
  .product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .product-card h3 {
    margin-top: 15px;
    color: #333;
  }
  
  .product-card p {
    font-size: 14px;
    color: #666;
  }
  


  /* Food */
  .menu {
    background-color: #fffdf7;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .menu h2 {
    text-align: center;
    font-size: 36px;
    color: #b30000;
    margin-bottom: 50px;
  }
  
  .menu-category {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .menu-category h3 {
    font-size: 24px;
    color: #b30000;
    margin-bottom: 10px;
    border-bottom: 2px solid #b30000;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .menu-category ul {
    list-style: none;
    padding-left: 0;
  }
  
  .menu-category li {
    font-size: 16px;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
  }

  
  /* Gallery */
  /* Gallery Section */
.gallery {
  padding: 60px 20px;
  background-color: #fffdf7;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  color: #b30000;
  margin-bottom: 40px;
}

.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: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}



/* Reviews */
.reviews {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  color: #b30000;
  margin-bottom: 40px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 30px 22px;
  font-style: italic;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-card .stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.review-card h4 {
  margin-top: 18px;
  font-style: normal;
  font-weight: bold;
  color: #444;
}


.review-card h4 {
  margin-top: 18px;
  font-style: normal;
  font-weight: bold;
  color: #444;
}

/* ===== Footer ===== */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 30px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-info,
.footer-links,
.footer-map {
  flex: 1;
  min-width: 250px;
}

.footer-info h3,
.footer-links h4 {
  font-size: 20px;
  color: #f5a623;
  margin-bottom: 15px;
}

.footer-info p,
.footer-links a,
.footer-links ul li {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom a {
  color: #f5a623;
  text-decoration: none;
}

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


.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-info,
  .footer-links,
  .footer-map {
    width: 100%;
  }

  .footer-map iframe {
    height: 250px;
  }
}

.footer-info a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #f5a623;
  text-decoration: underline;
}

/* === Responsive Fixes for Reviews Section === */
@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 20px 16px;
  }

  .reviews h2 {
    font-size: 28px;
  }
}

/* === Responsive Fixes for About Section === */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }
}

/* === Footer responsive adjustments === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-map iframe {
    width: 100%;
    height: 250px;
  }

  .footer-info {
    width: 100%;
  }
}

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #b30000;
    gap: 10px;
    padding: 10px 0;
  }

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

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
  }
}

