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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff9f0;
  color: #333;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Header */
header {
  text-align: center;
  background-color: black;
}

.header-banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* Navigation */
nav {
  background-color: #000;
  padding: 10px 0;
}

nav a {
  color: gold;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #f1c40f;
}

/* Carousel */
.carousel-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 10px black;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  border-bottom: 3px solid gold;
  display: inline-block;
  padding-bottom: 5px;
}

/* Menu Items */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  text-align: center;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item p {
  padding: 10px;
  font-weight: bold;
  font-size: 1rem;
}

/* Reviews */
#reviews {
  background-color: #fff9e8;
  padding: 60px 20px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

/* Order Now Button */
.order-online {
  text-align: left;
  margin: 30px 0 0 20px;
}


.order-online img {
  width: 220px;
  max-width: 90%;
  transition: transform 0.2s ease;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.order-online img:hover {
  transform: scale(1.05);
}
