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

/* Base */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fa;
  color: #111827;
  line-height: 1.5;
}

a {
  color: #166534;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #0f766e;
  color: #f9fafb;
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f9fafb;
}

.main-nav a {
  margin-left: 1rem;
  color: #e5fdf9;
  font-size: 0.95rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f766e, #22c55e);
  color: #f9fafb;
  padding: 3rem 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-actions {
  margin: 1rem 0 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background-color: #facc15;
  color: #111827;
}

.btn-secondary {
  background-color: transparent;
  color: #f9fafb;
  border: 1px solid rgba(249, 250, 251, 0.5);
  margin-left: 0.5rem;
}

.status-note {
  font-size: 0.9rem;
  max-width: 620px;
  opacity: 0.9;
}

.hero-side {
  flex: 0 1 260px;
  display: flex;
  align-items: stretch;
}

.hero-card {
  background-color: rgba(15, 23, 42, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: #e5fdf9;
  width: 100%;
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 0.4rem;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background-color: #e5e7eb;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.garden-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.garden-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.garden-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.garden-desc {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.6rem;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Simple list */
.simple-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: #374151;
}

.simple-list li {
  margin-bottom: 0.3rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background-color: #0b1120;
  color: #e5e7eb;
  font-size: 0.85rem;
  margin-top: 3rem;
  text-align: center;
}

.site-footer a {
  color: #bef264;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .btn-secondary {
    margin-left: 0;
  }
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

