:root {
  /* Organic Color Palette - Warm and Natural */
  --primary-color: #7c9d4b;
  --primary-dark: #6b8e3a;
  --secondary-color: #e8d5b7;
  --accent-color: #f4a261;
  --warm-white: #fefcf8;
  --soft-cream: #f9f6f1;
  --earth-brown: #8b6f47;
  --sage-green: #9caf88;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --shadow-soft: 0 10px 30px -15px rgba(124, 157, 75, 0.25);
  --shadow-medium: 0 15px 35px -10px rgba(124, 157, 75, 0.35);
  --border-radius-soft: 20px;
  --border-radius-round: 50px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Quicksand', 'Nunito', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 100%);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography - Round and Friendly */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

h6 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-dark);
}

/* Custom Components */

/* Organic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: var(--border-radius-round);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--earth-brown);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Organic Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 157, 75, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--sage-green), var(--accent-color));
  border-radius: var(--border-radius-soft) var(--border-radius-soft) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.95);
}

.card-organic {
  background: linear-gradient(145deg, rgba(232, 213, 183, 0.3), rgba(156, 175, 136, 0.2));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(124, 157, 75, 0.2);
}

/* Organic Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(135deg, var(--soft-cream), rgba(156, 175, 136, 0.1));
}

.section-hero {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-cream) 50%, rgba(156, 175, 136, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 157, 75, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* Organic Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-family: 'Quicksand', sans-serif;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(124, 157, 75, 0.2);
  border-radius: var(--border-radius-round);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 157, 75, 0.1);
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: var(--border-radius-soft);
}

/* Organic Navigation */
.nav-organic {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 157, 75, 0.1);
}

.nav-link {
  padding: 12px 20px;
  border-radius: var(--border-radius-round);
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  background: rgba(124, 157, 75, 0.1);
  color: var(--primary-color);
}

/* Organic Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--border-radius-round);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
}

.badge-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
  color: white;
}

.badge-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--earth-brown);
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

/* Organic Grid Layout */
.container-organic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-organic {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Organic Footer */
.footer-organic {
  background: linear-gradient(135deg, var(--earth-brown) 0%, #6b5d47 100%);
  color: var(--warm-white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-organic h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-organic a {
  color: var(--warm-white);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-organic a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Organic Text Elements */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-color);
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

/* Organic Interactive Elements */
.interactive-hover {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.interactive-hover:hover {
  transform: scale(1.05);
}

.pulse-organic {
  animation: pulse-organic 3s ease-in-out infinite;
}

@keyframes pulse-organic {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --border-radius-soft: 16px;
    --border-radius-round: 40px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section { padding: 3rem 0; }
  .section-hero { padding: 4rem 0; }
  
  .container-organic {
    padding: 0 1rem;
  }
  
  .grid-organic {
    gap: 1.5rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .card {
    padding: 1.5rem;
  }
  
  .section-hero {
    padding: 3rem 0;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}