* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                    url("hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  background: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #388E3C;
  transform: scale(1.05);
}

/* General Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2E7D32;
}

/* Menu & Gallery */
.menu-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.menu-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-item h3,
.menu-item p,
.menu-item span {
  padding: 0 1rem;
}

.menu-item span {
  font-weight: bold;
  color: #4CAF50;
  display: block;
  margin: 1rem 0;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 2rem auto;
  display: grid;
  gap: 1rem;
}

input,
textarea,
select {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background: white;
}

textarea {
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Date Group */
.date-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  text-align: left;
}

.date-selects {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.date-selects select {
  flex: 1;
  min-width: 100px;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* Time Group */
.time-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  text-align: left;
}

.time-group label {
  font-weight: 600;
  color: #2E7D32;
}
#reservations {
  background-color: #F4FAF4; 
  border-radius: 16px;       
  padding: 4rem 2rem;        
  margin: 3rem auto;         
  max-width: 900px;          
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.08); 
}

/* Footer */
footer {
  background: #2E7D32;
  color: white;
  text-align: center;
  padding: 2rem;

}



