/* Leaf&Ledge Canada - Indoor Herb Garden Website */
/* NO ANIMATIONS OR TRANSITIONS - Static Design Only */

:root {
  --primary-green: #2d5016;
  --light-green: #6b8e4e;
  --bg-cream: #f8f6f1;
  --text-dark: #2c3e1f;
  --text-grey: #5a5a5a;
  --white: #ffffff;
  --border-light: #e0ddd4;
  --accent-yellow: #f4e04d;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--light-green);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.nav-menu a.active {
  color: var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 0.25rem;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-grey);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

/* Stats Section */
.stats {
  background: var(--white);
  padding: 3rem 2rem;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-grey);
}

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

/* Section Headings */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 3rem;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card-content p {
  color: var(--text-grey);
  margin-bottom: 1rem;
}

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

.advantage-item {
  text-align: center;
  padding: 2rem;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  fill: var(--light-green);
}

.advantage-item h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.advantage-item p {
  color: var(--text-grey);
}

/* Reviews */
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--light-green);
}

.review-text {
  font-style: italic;
  color: var(--text-grey);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Newsletter */
.newsletter {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--accent-yellow);
  color: var(--primary-green);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

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

/* Category Pages */
.page-header {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-grey);
  max-width: 800px;
  margin: 0 auto;
}

/* Filter Chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.chip {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.chip.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

/* Badges */
.badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--light-green);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
}

.badge.beginner {
  background: #4caf50;
}

.badge.low-light {
  background: #ff9800;
}

.badge.water-wise {
  background: #2196f3;
}

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

.article-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
}

.article-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.article-preview {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Pages */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-page h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.content-page h2 {
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--text-grey);
}

.content-page ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
  color: var(--text-grey);
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }
  
  .hero {
    padding: 2rem 1rem;
  }
  
  .container {
    padding: 2rem 1rem;
  }
}
