/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.9);
  padding: 15px 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #FFD700;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #8B4513, #FFD700);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: linear-gradient(45deg, #FFD700, #8B4513);
}

/* About Section */
.about {
  padding: 50px 20px;
  background: #f9f5f0;
}

.about img {
  width: 70%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 20px;
}

/* Menu Section */
/* Menu Section */
.menu {
  padding: 50px 20px;
}

.menu-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #8B4513;
}


/* Gallery Section */
.gallery {
  padding: 50px 20px;
  background: #f9f5f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  background: #fdf7f0;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 30px auto 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8B4513;
  box-shadow: 0 0 5px rgba(139,69,19,0.5);
  outline: none;
}

.contact-form button {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #5a2d0c;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  gap: 30px;
  margin-bottom: 15px;
}

.footer-content h3 {
  color: #FFD700;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

.footer-content a:hover {
  color: #FFD700;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #FFD700;
}

footer .copyright {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Section Fade-in Animations */
section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

#hero { animation-delay: 0.1s; }
#about { animation-delay: 0.3s; }
#menu { animation-delay: 0.5s; }
#gallery { animation-delay: 0.7s; }
#contact { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1rem; }
  .menu-items { flex-direction: column; align-items: center; }
  .card { width: 90%; max-width: 350px; }
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
}

@media (max-width: 480px) {
  .hero { height: 80vh; padding: 20px; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero .btn { padding: 8px 15px; font-size: 0.9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 180px; }
  footer { font-size: 0.9rem; }
}
