/* nursery/inc/style.css */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fdfdfd;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
header {
  background: #2c5e2e;
  color: #fff;
  padding: 1rem 0;
}
header h1 { margin-bottom: 0.5rem; }
nav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a { color: #fff; text-decoration: none; font-weight: 500; }
nav a:hover { text-decoration: underline; }

/* HERO — uses hero.jpg placed in the same folder as this CSS file (nursery/inc/hero.jpg) */
/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary { background: #2c5e2e; color: #fff; }
.btn-primary:hover { background: #244d25; }
.btn-secondary { background: #fff; color: #2c5e2e; border: 2px solid #2c5e2e; }
.btn-secondary:hover { background: #f1f1f1; }

/* Other sections (kept from your file) */
.about-nursery, .catalogue, .ordering, .care-guide, .stories, .cta {
  background: #fff; margin: 2rem 0; padding: 2rem; border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
h3 { margin-bottom: 1rem; color: #2c5e2e; }

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.plant-item { background: #f8f8f8; border-radius: 8px; padding: 1rem; text-align:center; transition: transform .2s ease; }
.plant-item:hover { transform: translateY(-5px); }
.plant-item img { width:100%; border-radius:8px; margin-bottom:.8rem; }

.ordering ol { padding-left: 1.2rem; }
.tips { display:flex; flex-wrap:wrap; gap:1rem; }
.tip { flex:1 1 250px; background:#f0fdf0; padding:1rem; border-radius:8px; }

.stories blockquote { background:#f9f9f9; padding:1rem 1.5rem; border-left:5px solid #2c5e2e; margin:1rem 0; font-style:italic; }

.cta { text-align:center; }
.cta .btn-primary, .cta .btn-secondary { margin:.5rem; }

footer { background:#2c5e2e; color:#fff; text-align:center; padding:2rem 1rem; margin-top:2rem; }
footer a { color:#fff; text-decoration:none; }
footer a:hover { text-decoration:underline; }
footer .social { list-style:none; display:flex; justify-content:center; gap:1.5rem; margin-top:1rem; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { justify-content:center; }
  .hero { min-height: 60vh; padding: 3rem 1rem; }
  .hero h2 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
}
