/* style.css */
:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --secondary: #ff9800;
  --light: #f9f9f9;
  --dark: #333;
  --gray: #666;
  --border: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.header nav a {
  text-decoration: none;
  color: var(--dark);
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s;
}
.header nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 0;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn:hover {
  background: #e68a00;
}

/* Sections */
section {
  padding: 60px 0;
}

h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}
p {
  margin-bottom: 15px;
}

/* How It Works */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.step {
  text-align: center;
  max-width: 250px;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}
.step h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.menu-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.menu-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.menu-item h3 {
  padding: 15px;
  font-size: 1.3rem;
  color: var(--primary-dark);
}
.menu-item p {
  padding: 0 15px;
  color: var(--gray);
  font-size: 0.95rem;
}
.price {
  display: block;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}
.tag {
  display: inline-block;
  background: #e8f5e9;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0 15px 15px;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}
.about-text {
  flex: 2;
  min-width: 300px;
}
.about-image {
  flex: 1;
  min-width: 250px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.about ul {
  margin: 15px 0;
  padding-left: 20px;
}
.about li {
  margin-bottom: 8px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.testimonial {
  background: var(--light);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial cite {
  color: var(--gray);
  font-style: normal;
}

/* Contact */
.contact {
  background: var(--light);
  text-align: center;
}
.email-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
}
.email-link:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 25px 0;
}
footer a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }
  .header nav {
    margin-top: 15px;
  }
  .header nav a {
    margin: 0 10px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .steps, .menu-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
}