body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 3em 1em;
  animation: fadeInBg 1s ease-in-out forwards;
  opacity: 0;
  position: relative;
  height: 65vh;
  overflow: hidden;
}



.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* darkens images */
  z-index: 1;
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2em 2.5em;
  background: rgba(0, 0, 0, 0.7); /* deep black glass */
  border: 2px solid rgba(255, 215, 0, 0.8); /* golden border */
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(80, 69, 6, 0.5);
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(3px); /* glass effect */
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 0.4em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero p {
  font-size: 1.2em;
  color: #f8f8f8;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}


@keyframes fadeInBg {
  to {
    opacity: 1;
  }
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffc107;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.9s ease forwards;
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #eaeaea;
  margin: 0 auto;
  max-width: 650px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.4s; /* comes after heading */
}

/* Slide in from left */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



.slideshow {
  position: absolute;
  width: 100%;
  height: 100%; /* Matches hero height */
  top: 0;
  left: 0;
  z-index: 0;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.1); /* start slightly zoomed in */
  transition: opacity 1.5s ease, transform 8s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1); /* zooms out gently */
  z-index: 1;
}

.slide.prev {
  opacity: 0;
  z-index: 0;
}


.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;          /* makes it round */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);  /* adds shadow */
  margin-bottom: 1em;
  background-color: white;     /* optional: keeps round edge visible if image has transparency */
}

.logo:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
  text-shadow: 2px 2px 8px #000;
}

p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.8em 1.5em;
  background: #000;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  text-shadow: 2px 2px 15px #000;
}

.intro {
  padding: 2em 1em;
  text-align: center;
}

footer {
  background: #111;
  padding: 1em;
  text-align: center;
}

footer .social a,
footer .whatsapp {
  color: #FFD700;
  text-decoration: none;
  margin: 0 0.5em;
}

.btn:hover {
  background-color: #f8e992;
  color: #000;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1, .hero p, .btn {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.hero h1 {
  animation-delay: 0.3s;
}
.hero p {
  animation-delay: 0.6s;
}
.hero .btn {
  animation-delay: 0.9s;
}


.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #FFD700; /* golden */
  box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
}


.highlight {
  color: #ffc107; /* yellow to match your logo */
  font-weight: 1500; /* makes it bold */
}

.para {
  font-size: medium;
}

/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
  background: #8b8b8b;
  text-align: center;
}
.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #000;
}
.why-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.why-item {
  text-align: center;
  max-width: 220px;
}
.why-item .icon {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 10px;
}
.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}
.why-item p {
  font-size: 0.95rem;
  color: #444;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 40px;
}
.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.testimonial p {
  font-size: 0.95rem;
  color: #eee;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #ffcc00;
}

/* 🌟 Pre-Order Banner Styling */
.preorder-banner {
  background: linear-gradient(135deg, #ffcc00, #ffdd44);
  color: #000;
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
  margin: 40px auto;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  animation: fadeInUp 1s ease;
}

.preorder-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.preorder-content p {
  font-size: 1rem;
  font-weight: 500;
}

/* ✨ Fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signature-dishes {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
}

.signature-dishes h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.signature-dishes h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.dish-card {
  background: #111;
  border: 2px solid #ffcc00;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #ffcc00;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.dish-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.2) saturate(1.2);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
}


.dish-card h3 {
  margin: 15px 0 8px;
  font-size: 1.4rem;
  color: #ffcc00;
}

.dish-card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #ddd;
}
