/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0fff0; /* light mint green */
  color: #2d2d2d;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #2e7d32; /* deep green */
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #dcedc8;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

/* Home Section */
#home {
  padding: 60px 20px;
  background-color: #e8f5e9; /* soft green */
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b5e20;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.hero img {
  margin-top: 30px;
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about {
  background-color: #f1f8e9; /* light green shade */
  padding: 60px 20px;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #33691e;
}

#about p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1rem;
}

.about-img {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.about-img img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-box,
.hours {
  background-color: #ffffff;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  border-left: 5px solid #66bb6a;
  text-align: left;
  border-radius: 6px;
}

.info-box h3,
.hours h3 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.hours ul {
  list-style: none;
  padding-left: 0;
}

/* Menu Section */
#menu {
  padding: 60px 20px;
  background-color: #dcedc8; /* pale green */
  text-align: center;
}

#menu h2 {
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 30px;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-content {
  padding: 20px;
  text-align: left;
}

.menu-content h3 {
  margin-top: 0;
  color: #388e3c;
  font-size: 1.3rem;
}

.menu-content p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #555;
}

.menu-content .price {
  font-weight: bold;
  color: #2e7d32;
  font-size: 1.1rem;
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  background-color: #e0f2f1; /* soft teal green */
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  color: #00695c;
  margin-bottom: 20px;
}

#contact p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #1b5e20;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .about-img {
    flex-direction: column;
    align-items: center;
  }
}
