:root {
  /* Greenery & Nursery Solid Colors */
  --color-green-light: #e8f5e9;
  --color-green-soft: #c8e6c9;
  --color-green-primary: #4caf50;
  --color-green-dark: #2e7d32;
  --color-green-leaf: #388e3c;
  --color-green-forest: #1b5e20;
  
  --color-earth-brown: #795548;
  --color-sunlight-yellow: #fbc02d;

  /* Beautiful Gradients for Gardening Theme */
  --gradient-nursery: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  --gradient-forest: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
  --gradient-sunlight: linear-gradient(135deg, #fdfc47 0%, #24fe41 100%);
  --gradient-earth: linear-gradient(135deg, #795548 0%, #4e342e 100%);
  --gradient-mint: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);

  /* Google Sans Font Family Stack */
  --font-family-base: "Google Sans", sans-serif;
}

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

body {
  font-family: var(--font-family-base) !important;
  font-weight: 400; /* Regular body weight */
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
  text-transform: capitalize; /* Global text transform as requested */
}

/* Max font weight 600 as requested */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--color-green-forest);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

strong, b {
  font-weight: 600;
}

/* Global Responsiveness for Media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* Utility Classes: Typography */
.text-capitalize { text-transform: capitalize; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; /* Max 600 allowed */ }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Utility Classes: Background Gradients */
.bg-gradient-nursery { background: var(--gradient-nursery); color: white; }
.bg-gradient-forest { background: var(--gradient-forest); color: white; }
.bg-gradient-sunlight { background: var(--gradient-sunlight); color: #333; }
.bg-gradient-earth { background: var(--gradient-earth); color: white; }
.bg-gradient-mint { background: var(--gradient-mint); color: white; }

/* Utility Classes: Text Gradients */
.text-gradient-nursery {
  background: var(--gradient-nursery);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-forest {
  background: var(--gradient-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Utility Classes: Responsive Flexbox */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Utility Classes: Responsive Grid */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .grid-cols-sm-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-cols-md-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-md-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-lg-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-lg-4 { grid-template-columns: repeat(4, 1fr); }
}
