/* GardenCare styles */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v18/UcCo3FwrK3iLTcviYwY.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ecfdf5;
  color: #0f172a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfccb 100%);
  color: #0f172a;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  text-decoration: none;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}
.btn-primary {
  background: #059669;
  color: #ffffff;
}
.btn-secondary {
  background: #f8fafc;
  color: #334155;
}
.btn-secondary:hover {
  background: #e2e8f0;
}
.btn-danger {
  background: #fecaca;
  color: #991b1b;
}
.btn-danger:hover {
  background: #fecdd3;
}
.card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 1.75rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
}
.card.bg-amber-50 {
  border-color: rgba(251, 191, 36, 0.18);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 1rem;
  background: #f8fafc;
  color: #0f172a;
  padding: 0.95rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
  background: #ffffff;
}
@media (max-width: 1024px) {
  .card {
    padding: 1.35rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    justify-content: center;
  }
  .nav-links a {
    flex: 1 1 100%;
    max-width: 240px;
  }
  .btn {
    width: 100%;
  }
  .card {
    border-radius: 1.25rem;
  }
}
@media (max-width: 640px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .card {
    padding: 1.2rem;
  }
}
