
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #fff;
  scroll-behavior: smooth;
}
.site-header {
  position: absolute; 
  top: 30px;          
  left: 50%;          
  transform: translateX(-50%); 
  z-index: 10;
  text-align: center;
}

.site-header .logo img {
  height: 100px;  
  width: auto;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e85a2c;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 1.5rem;
  animation: bounce 1.5s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Dishes Section */
.dishes-section {
  background: #fdf6f0;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

.dishes-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.dish-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dish-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-card .dish-info {
  padding: 15px;
  text-align: left;
}

.dish-card .dish-info h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.dish-card .dish-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.dish-card .dish-info span {
  font-weight: bold;
  color: #ff6b35;
}


.video-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6);
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.video-content p {
  font-size: 1.2rem;
}


.story-section {
  display: flex;
  width: 100%;
  height: 90vh;
  margin-top: 80px;
  overflow: hidden;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(248, 248, 248, 0.9);
  padding: 60px;
}

.text-block h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.text-block p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}


.menu-highlights {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.menu-highlights h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #222;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.menu-item {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.menu-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.menu-item .price {
  color: #ff6b35;
  font-weight: bold;
  margin-left: 10px;
}

.menu-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}


.testimonials-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1 1 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  min-height: 60px;
}

.testimonial-rating {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial-name {
  font-weight: bold;
  color: #333;
}


.site-footer {
  background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f5a623;
}

.footer-social {
  text-align: center;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
}

.footer-social img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}


@media (max-width: 768px) {
  .story-section {
    flex-direction: column;
    height: auto;
  }
  .story-image,
  .story-content {
    flex: none;
    width: 100%;
    height: auto;
  }
  .story-content {
    padding: 40px 20px;
  }
  .text-block h2 {
    font-size: 2rem;
  }
  .text-block p {
    font-size: 1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    margin-bottom: 20px;
  }
}


.menu-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
}

.menu-item .price {
  color: #ff6b35;
  font-weight: bold;
}


.menu-item h3::after {
  content: " —";
  margin-left: 8px;
  color: #888;
}

