/* ============================
   TOOELE LAWNS — SHARED STYLES
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --green-900: #0f1c19;
  --green-800: #1b3b36;
  --green-700: #2a5a52;
  --green-600: #3b7c71;
  --green-500: #4c9e90;
  --green-400: #68b4a7;
  --green-300: #8ecac0;
  --green-100: #e2f1ee;
  --green-50:  #f0f7f6;

  --gold-500: #e6a800;
  --gold-400: #fdbb11;
  --gold-300: #fdcc4a;
  --gold-100: #fef5d8;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #fdfdfd;
  --white:    #ffffff;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.15), 0 10px 10px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,.25);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}

.btn-pill-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-800); color: var(--white);
  font-weight: 600; font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 12px 28px; border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-pill-dark:hover { background: var(--green-900); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,59,54,0.3); }

.btn-pill-yellow {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-400); color: var(--gray-900);
  font-weight: 700; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 16px 36px; border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-pill-yellow:hover { background: var(--gold-500); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(253,187,17,0.3); }

.btn-text {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 16px 20px; transition: opacity 0.2s;
}
.btn-text:hover { opacity: 0.8; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }
