body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}

header {
  background: #006d6f;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.hero, .contact-info, .gallery-text {
  max-width: 900px;
  margin: auto;
  padding: 30px;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px 0;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background: #128C7E;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s, background 0.3s;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.food-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #006d6f;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px 0;
  transition: background 0.3s;
}

.maps-link:hover {
  background: #005456;
}

.special {
  background: #f2f8f8;
  border-left: 5px solid #006d6f;
  padding: 15px;
  margin: 20px 0;
}

.reviews {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: #f9f9f9;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #006d6f;
}

.review-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-rating {
  display: inline-block;
  background: #006d6f;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  line-height: 1.6;
  margin: 10px 0;
}

.review-author {
  text-align: right;
  color: #666;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

footer {
  background: #006d6f;
  color: white;
  text-align: center;
  padding: 10px;
}
