body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background-color: #f8f8f8;

}

.navbar {
   background-color: #f8f8f8; /* soft off-white base */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='black'%3E%3Ccircle cx='10' cy='15' r='1'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='1.5'/%3E%3Ccircle cx='150' cy='80' r='1'/%3E%3Ccircle cx='120' cy='150' r='1.2'/%3E%3Ccircle cx='180' cy='120' r='1'/%3E%3Ccircle cx='60' cy='170' r='1.4'/%3E%3Ccircle cx='30' cy='100' r='1'/%3E%3Ccircle cx='170' cy='30' r='1'/%3E%3Ccircle cx='80' cy='60' r='1.2'/%3E%3Ccircle cx='140' cy='40' r='1'/%3E%3Ccircle cx='100' cy='90' r='1.5'/%3E%3Ccircle cx='40' cy='130' r='1'/%3E%3Ccircle cx='160' cy='160' r='1.2'/%3E%3Ccircle cx='20' cy='180' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;

  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left, .nav-right {
  display: flex;
  gap: 30px;
}

.nav-left a, .nav-right a {
  color: black;
  text-decoration: none;
  
}

.nav-left a:hover, .nav-right a:hover {
  text-decoration: underline;
}

.nav-logo {
  text-align: center;
}

.nav-logo img {
  height: 40px;
}

.logo-text {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.hamburger {
  display: none;
 background: none ;
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile menu styling */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #f8f8f8; /* soft off-white base */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='black'%3E%3Ccircle cx='10' cy='15' r='1'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='1.5'/%3E%3Ccircle cx='150' cy='80' r='1'/%3E%3Ccircle cx='120' cy='150' r='1.2'/%3E%3Ccircle cx='180' cy='120' r='1'/%3E%3Ccircle cx='60' cy='170' r='1.4'/%3E%3Ccircle cx='30' cy='100' r='1'/%3E%3Ccircle cx='170' cy='30' r='1'/%3E%3Ccircle cx='80' cy='60' r='1.2'/%3E%3Ccircle cx='140' cy='40' r='1'/%3E%3Ccircle cx='100' cy='90' r='1.5'/%3E%3Ccircle cx='40' cy='130' r='1'/%3E%3Ccircle cx='160' cy='160' r='1.2'/%3E%3Ccircle cx='20' cy='180' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  width: 250px;
  padding: 20px;
  z-index: 2000;
}

.mobile-menu a {
  color: black;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: black;
  font-size: 24px;
  text-align: right;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-left, .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
}


/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

.carousel-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2.5rem;
  
  text-align: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}



/* Responsive Captions */
@media (max-width: 768px) {
  .caption {
    font-size: 1.3rem;
    bottom: 15%;
    padding: 8px 15px;
  }

  .prev, .next {
    font-size: 1.5rem;
    padding: 8px;
  }
}
.site-footer {
   background-color: #f8f8f8; /* soft off-white base */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='black'%3E%3Ccircle cx='10' cy='15' r='1'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='1.5'/%3E%3Ccircle cx='150' cy='80' r='1'/%3E%3Ccircle cx='120' cy='150' r='1.2'/%3E%3Ccircle cx='180' cy='120' r='1'/%3E%3Ccircle cx='60' cy='170' r='1.4'/%3E%3Ccircle cx='30' cy='100' r='1'/%3E%3Ccircle cx='170' cy='30' r='1'/%3E%3Ccircle cx='80' cy='60' r='1.2'/%3E%3Ccircle cx='140' cy='40' r='1'/%3E%3Ccircle cx='100' cy='90' r='1.5'/%3E%3Ccircle cx='40' cy='130' r='1'/%3E%3Ccircle cx='160' cy='160' r='1.2'/%3E%3Ccircle cx='20' cy='180' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;

  color:black; /* reddish text */
  font-family: Arial, sans-serif;
  padding: 20px;
  text-align: center;
}

.footer-top {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer-top a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.footer-top a:hover {
  text-decoration: underline;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-left h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.email-form {
  display: flex;
  border: 1px solid #a93b3c;
  overflow: hidden;
  max-width: 250px;
}

.email-form input {
  flex: 1;
  border: none;
  padding: 10px;
}

.email-form button {
  background: none;
  border: none;
  font-size: 20px;
  padding: 0 10px;
  cursor: pointer;
  color: #333;
}

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  max-height: 50px;
}

.footer-right {
  flex: 1;
  min-width: 200px;
  text-align: right;
}

.footer-right span {
  font-weight: bold;
}

.footer-bottom {
  margin-top: 15px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: black;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-right {
    text-align: center;
  }
}



/* HERO */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-carousel {
  position: relative;
}
.slide {
  display: none;
  position: relative;
}
.slide.active {
  display: block;
}
.slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  color: white;
  border-radius: 8px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
}
.btn {
  background: #7a0000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* MENU HIGHLIGHTS */
.menu-highlights {
  padding: 50px 20px;
  text-align: center;
}
.menu-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
}
.card h3 {
  margin: 15px 0 5px;
}

/* ABOUT */
.about {
  background: #f2f2f2;
  padding: 50px 20px;
  text-align: center;
}

/* HOURS */
.hours-location {
  padding: 50px 20px;
  text-align: center;
}
.hours-location table {
  margin: auto;
  border-collapse: collapse;
}
.hours-location td {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
.hours-location iframe {
  margin-top: 20px;
  width: 100%;
  height: 300px;
  border: none;
}

/* REVIEWS */
.reviews {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}
.review {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
}


/* Stats Section */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background: #f9f5f0;
  text-align: center;
}

.stat {
  flex: 1;
}

.number {
  font-size: 3rem;
  font-weight: bold;
  color: #8B0000;
  display: block;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  background: #222;
  color: white;
  padding: 40px 20px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#countdown div {
  background: #333;
  padding: 20px;
  border-radius: 8px;
}

#countdown span {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffcc00;
}
