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

:root {
  /* Color Palette */
  --primary-color: #f4f8f4;     /* Light background */
  --secondary-color: #2c5f2d;   /* Dark green */
  --accent-color: #97bc62;      /* Light earthy green */
  --text-dark: #1f2937;         /* Dark text */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
  --gradient-accent: linear-gradient(135deg, #97bc62 0%, #7a9c4b 100%);
  --gradient-light: linear-gradient(135deg, #f4f8f4 0%, #e0ece0 100%);

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--text-dark);
  background-color: var(--primary-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Base styles for consistency */
.text-primary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

/* Buttons */
.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Custom Numbered List */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}
.custom-list li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}
.custom-list {
  counter-reset: li;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* Full height minimum */
.min-h-screen-layout {
  min-height: calc(100vh - 200px); 
}

/* Utilities */
.shadow-custom {
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.1);
}