/* Google Fonts: Roboto Slab */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700;900&display=swap");

:root {
  --primary: #b50005;
  --dark: #0a0a0a;
  --light: #f8f8f8;
  --gray: #333;
  --white: #ffffff;
  --ubereats-green: #06c167;
  --ubereats-dark-green: #04a352;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--gray);
  background-color: transparent;
  overflow-x: hidden;
}

/* Apply Roboto Slab to all heading tags */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Fixed Image Background */
.image-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("/assets/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
  z-index: -1;
}
/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 90px;
  width: auto;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 40px;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}
/* Active navigation link styling */
.nav-links a.active,
.mobile-nav-links a.active {
  color: var(--primary);
}
.mobile-menu {
  display: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}
/* Mobile Menu Styles */
.mobile-menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.98);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  padding: 20px;
}
.mobile-menu-container.active {
  right: 0;
}
.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.close-menu:hover {
  color: var(--primary);
  transform: rotate(90deg);
}
.mobile-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}
.mobile-nav-links li {
  margin: 20px 0;
}
.mobile-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: block;
}
.mobile-nav-links a:hover {
  color: var(--primary);
  transform: scale(1.1);
}
.mobile-book-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  margin-top: 20px;
}
.mobile-book-btn:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-5px);
}
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px; /* Increased gap between text and image */
}
.hero-content {
  max-width: 55%; /* Reduced to make more room for image */
  z-index: 1;
}
.hero-image {
  max-width: 50%; /* Increased image size */
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

/* Hero Buttons - Updated for better mobile alignment */
.hero-buttons {
  display: flex;
  justify-content: flex-start; /* Changed from default to align left */
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  flex-wrap: wrap;
  gap: 15px; /* Added gap for consistent spacing */
}
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-right: 20px;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(190, 45, 54, 0.3);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(190, 45, 54, 0.4);
}
.btn-outline {
  background-color: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-5px);
}

/* Hero Social Links - Added */
.hero-social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}
.hero-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero-social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

/* Delivery Info - New Design */
.delivery-info {
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 18px 25px;
  margin-top: 30px;
  animation: fadeInUp 1s ease 0.5s;
  animation-fill-mode: both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--white);
  transition: all 0.3s ease;
  max-width: 65%;
}

.delivery-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.delivery-badge i {
  font-size: 28px;
  color: var(--white);
}

.delivery-content h4 {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.delivery-content p {
  font-size: 16px;
  color: var(--light);
  margin: 0 0 5px 0;
  line-height: 1.4;
}

/* Section Styles - Transparent Backgrounds */
section {
  position: relative;
  padding: 100px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}
.section-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-image {
  flex: 0.5;
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-text {
  flex: 0.8;
}
.about-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about-feature:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.about-feature i {
  font-size: 24px;
  color: var(--primary);
  margin-right: 15px;
}
.about-feature span {
  font-weight: 600;
  color: var(--white);
}
/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.feature {
  background-color: rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.feature-icon i {
  font-size: 36px;
  color: var(--white);
}
.feature h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.feature p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0.8;
}
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.author-info p {
  font-size: 14px;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-view {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(190, 45, 54, 0.3);
}
.btn-view:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(190, 45, 54, 0.4);
}

/* Location & Hours */
.location-hours-content {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
.location-info,
.hours-info {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.location-info:hover,
.hours-info:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.location-info h3,
.hours-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.location-info h3 i,
.hours-info h3 i {
  font-size: 32px;
  color: var(--primary);
  margin-right: 15px;
}
.location-info p,
.hours-info p {
  font-size: 16px;
  color: var(--light);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.location-info i,
.hours-info i {
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 18px;
}
.map-container {
  margin-top: 30px;
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.hours-table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hours-table tr:last-child {
  border-bottom: none;
}
.hours-table td {
  padding: 15px 0;
  font-size: 16px;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hours-table tr.current-day {
  background-color: rgba(181, 0, 5, 0.2);
  border-radius: 4px;
}

.hours-table tr.current-day td:first-child {
  color: var(--white);
  font-weight: 700;
}
/* Call Button */
.call-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.call-btn:hover {
  background-color: #a0252d;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  border-radius: 10px;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta p {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 40px;
}
/* Footer */
footer {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
  padding: 80px 0 40px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-column h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 60px;
  width: auto;
}
.footer-column p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 15px;
}
.footer-column ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 10px;
}
.footer-column ul li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 5px 0;
}
.copyright a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.copyright a:hover {
  color: var(--light);
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.back-to-top:hover {
  background-color: #a0252d;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Uber Eats Order Button */
.order-online-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--ubereats-green);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 60px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.order-online-btn i {
  font-size: 24px;
  margin-right: 10px;
}

.order-online-btn:hover {
  background-color: var(--ubereats-dark-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Desktop Navigation Enhancement */
@media (min-width: 769px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links li {
    margin-left: 0;
  }

  .nav-links a {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-links a.active {
    background-color: rgba(181, 0, 5, 0.2);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 500;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .about-content,
  .location-hours-content {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .section-header h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero-content h1 {
    font-size: 42px;
  }

  /* Updated hero-buttons for smaller screens - FIXED ALIGNMENT */
  .hero-buttons {
    justify-content: flex-start; /* Ensures left alignment */
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero-buttons .btn {
    margin-right: 0;
    flex: 0 0 auto; /* Changed from flex: 1 to auto */
    min-width: auto; /* Changed from calc(50% - 8px) to auto */
  }

  .btn {
    margin-right: 0;
  }

  /* Updated about-features for smaller screens */
  .about-features {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-feature {
    width: calc(50% - 10px);
  }

  .testimonial-buttons {
    justify-content: center; /* Keep horizontal layout */
    flex-wrap: wrap; /* Allow wrapping if needed */
  }
  /* Back to top button responsive */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  /* Uber Eats button responsive */
  .order-online-btn {
    bottom: 20px;
    left: 20px;
    height: 50px;
    padding: 0 15px;
    font-size: 14px;
  }

  .order-online-btn i {
    font-size: 20px;
    margin-right: 8px;
  }

  /* Delivery Info Responsive - REMOVED flex-direction: column */
  .delivery-info {
    align-items: center; /* Keep horizontal alignment */
    padding: 15px;
    max-width: 100%;
  }

  .delivery-badge {
    margin-right: 15px; /* Keep margin for horizontal layout */
    margin-bottom: 0; /* Remove bottom margin */
    width: 50px;
    height: 50px;
  }

  .delivery-badge i {
    font-size: 24px;
  }

  .delivery-content h4 {
    font-size: 16px;
  }

  .delivery-content p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 16px;
  }
  .feature h3 {
    font-size: 18px;
  }
  .feature p {
    font-size: 14px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .location-info h3,
  .hours-info h3 {
    font-size: 22px;
  }
  .hours-table td {
    font-size: 14px;
  }
  .cta h2 {
    font-size: 32px;
  }
  .cta p {
    font-size: 16px;
  }

  /* Uber Eats button mobile styles */
  .order-online-btn {
    height: 45px;
    padding: 0 12px;
    font-size: 12px;
  }

  .order-online-btn i {
    font-size: 18px;
    margin-right: 6px;
  }

  /* Keep about-features as 2 side-by-side even on 480px */
  .about-features {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-feature {
    width: calc(50% - 10px);
  }

  /* Keep hero-buttons as 2 side-by-side even on 480px - FIXED ALIGNMENT */
  .hero-buttons {
    justify-content: flex-start; /* Ensures left alignment */
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-buttons .btn {
    flex: 0 0 auto; /* Changed from flex: 1 to auto */
    min-width: auto; /* Changed from calc(50% - 5px) to auto */
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Delivery Info for very small screens - KEEP HORIZONTAL LAYOUT */
  .delivery-info {
    align-items: center; /* Keep horizontal alignment */
    padding: 12px;
  }

  .delivery-badge {
    margin-right: 12px; /* Keep margin for horizontal layout */
    margin-bottom: 0; /* Remove bottom margin */
    width: 45px;
    height: 45px;
  }

  .delivery-badge i {
    font-size: 20px;
  }

  .delivery-content h4 {
    font-size: 15px;
  }

  .delivery-content p {
    font-size: 13px;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  width: 100%;
  padding: 0 20px;
}

.preloader-logo {
  margin-bottom: 30px;
}

.preloader-logo img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(181, 0, 5, 0.3));
}

.preloader-tagline {
  margin-bottom: 35px;
}

.preloader-tagline h2 {
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preloader-tagline h2 span {
  color: var(--primary);
}

.preloader-loader {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  border-radius: 2px;
  animation: loading 1s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Responsive adjustments for preloader */
@media (max-width: 480px) {
  .preloader-logo img {
    max-width: 250px;
  }

  .preloader-tagline h2 {
    font-size: 20px;
  }
}
