/* Plant Based Meals - The Garden Kitchen Theme */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --basil-green: #2E7D32;
  --harvest-orange: #F57C00;
  --beetroot-purple: #880E4F;
  --oatmeal: #FAF9F6;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--oatmeal);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: var(--basil-green);
  margin-bottom: 1rem;
}

/* Navigation */
nav {
  background-color: var(--basil-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.leaf-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--harvest-orange);
}

/* Hero Section */
.hero {
  height: 70vh;
  min-height: 400px;
  background: linear-gradient(rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.3)), 
              url('hero-plant-feast.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #555;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--harvest-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

.btn:hover {
  background-color: #E65100;
}

.btn-secondary {
  background-color: var(--basil-green);
}

.btn-secondary:hover {
  background-color: #1B5E20;
}

/* Footer */
footer {
  background-color: var(--basil-green);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--harvest-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Intro Section */
.intro {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Feature Box */
.feature-box {
  background: linear-gradient(135deg, var(--beetroot-purple), var(--harvest-orange));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.feature-box h3 {
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.2rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero {
    height: 50vh;
  }
  
  .container {
    padding: 2rem 1rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}