@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --ev-white: #FFFFFF;
  --ev-bg: #F6FAF2;
  --ev-bg-alt: #EEF5E7;
  --ev-green: #2E8B57;
  --ev-green-dark: #1B5E3B;
  --ev-green-light: #D4EDDA;
  --ev-green-pale: #E8F5E0;
  --ev-orange: #FF8C42;
  --ev-orange-light: #FFF3E6;
  --ev-yellow: #FFD166;
  --ev-text: #1A2E23;
  --ev-text-light: #4A6B58;
  --ev-text-muted: #8BA89A;
  --ev-border: #C8DEC4;
  --ev-shadow: 0 4px 24px rgba(30, 90, 60, 0.08);
  --ev-shadow-lg: 0 12px 48px rgba(30, 90, 60, 0.12);
  --ev-shadow-card: 0 6px 32px rgba(30, 90, 60, 0.10);
  --ev-radius: 20px;
  --ev-radius-sm: 12px;
  --ev-radius-xs: 8px;
  --ev-transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ev-text);
  background: var(--ev-bg);
}

a { color: inherit; text-decoration: none; transition: color var(--ev-transition); }
a:hover { color: var(--ev-green); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== CONTAINER ========== */
.ev-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.ev-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 250, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ev-border);
  transition: box-shadow var(--ev-transition);
}
.ev-header.scrolled {
  box-shadow: var(--ev-shadow);
}
.ev-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.ev-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ev-green-dark);
}
.ev-logo:hover { color: var(--ev-green-dark); text-decoration: none; }
.ev-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ev-green), var(--ev-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.ev-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ev-nav-link {
  padding: 8px 14px;
  border-radius: var(--ev-radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--ev-text-light);
  transition: all var(--ev-transition);
}
.ev-nav-link:hover {
  background: var(--ev-green-pale);
  color: var(--ev-green-dark);
  text-decoration: none;
}
.ev-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--ev-green);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--ev-transition);
  white-space: nowrap;
}
.ev-header-cta:hover {
  background: var(--ev-green-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}
.ev-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.ev-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ev-text);
  border-radius: 2px;
  transition: all var(--ev-transition);
}

/* ========== HERO ========== */
.ev-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246,250,242,0.95) 0%, rgba(246,250,242,0.75) 50%, rgba(246,250,242,0.3) 100%),
    url('https://images.unsplash.com/photo-1622597467836-f3285f2131b8?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.ev-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 640px;
}
.ev-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--ev-green-light);
  color: var(--ev-green-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.ev-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ev-green);
  box-shadow: 0 0 0 4px rgba(46,139,87,0.15);
}
.ev-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--ev-text);
  margin-bottom: 20px;
}
.ev-hero-accent {
  background: linear-gradient(135deg, var(--ev-green), var(--ev-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ev-hero-desc {
  font-size: 18px;
  color: var(--ev-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.ev-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--ev-transition);
  border: 2px solid transparent;
}
.ev-btn:hover { text-decoration: none; transform: translateY(-2px); }
.ev-btn-primary {
  background: var(--ev-green);
  color: #fff;
  border-color: var(--ev-green);
}
.ev-btn-primary:hover {
  background: var(--ev-green-dark);
  border-color: var(--ev-green-dark);
  box-shadow: 0 8px 28px rgba(46,139,87,0.3);
  color: #fff;
}
.ev-btn-outline {
  background: transparent;
  color: var(--ev-green-dark);
  border-color: var(--ev-border);
}
.ev-btn-outline:hover {
  background: var(--ev-green-pale);
  border-color: var(--ev-green);
  color: var(--ev-green-dark);
}
.ev-btn-white {
  background: #fff;
  color: var(--ev-green-dark);
  border-color: #fff;
}
.ev-btn-white:hover {
  background: var(--ev-green-pale);
  border-color: var(--ev-green-pale);
  color: var(--ev-green-dark);
}

/* ========== SECTIONS ========== */
.ev-section {
  padding: 80px 0;
}
.ev-section-alt {
  background: var(--ev-bg-alt);
}
.ev-section-green {
  background: linear-gradient(135deg, var(--ev-green-dark), var(--ev-green));
  color: #fff;
}
.ev-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.ev-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ev-text);
  margin-bottom: 12px;
}
.ev-section-green .ev-section-header h2 {
  color: #fff;
}
.ev-section-header p {
  font-size: 17px;
  color: var(--ev-text-light);
  max-width: 560px;
  margin: 0 auto;
}
.ev-section-green .ev-section-header p {
  color: rgba(255,255,255,0.8);
}

/* ========== BENEFITS ========== */
.ev-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ev-benefit-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ev-border);
  box-shadow: var(--ev-shadow);
  transition: all var(--ev-transition);
}
.ev-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ev-shadow-lg);
}
.ev-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}
.ev-benefit-icon-1 { background: var(--ev-orange-light); }
.ev-benefit-icon-2 { background: var(--ev-green-light); }
.ev-benefit-icon-3 { background: #FFF8E1; }
.ev-benefit-icon-4 { background: #E8F0FE; }
.ev-benefit-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--ev-text);
}
.ev-benefit-desc {
  font-size: 14px;
  color: var(--ev-text-light);
  line-height: 1.6;
}

/* ========== GALLERY ========== */
.ev-gallery {
  padding: 0 0 80px;
}
.ev-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  border-radius: var(--ev-radius);
  overflow: hidden;
}
.ev-gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--ev-radius-sm);
  transition: transform var(--ev-transition);
}
.ev-gallery-img:hover {
  transform: scale(1.03);
}

/* ========== RECIPES ========== */
.ev-recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ev-recipe-card {
  display: flex;
  background: var(--ev-white);
  border-radius: var(--ev-radius);
  overflow: hidden;
  border: 1px solid var(--ev-border);
  box-shadow: var(--ev-shadow);
  transition: all var(--ev-transition);
}
.ev-recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ev-shadow-lg);
}
.ev-recipe-img {
  width: 200px;
  min-height: 240px;
  object-fit: cover;
  flex-shrink: 0;
}
.ev-recipe-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.ev-recipe-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  align-self: flex-start;
}
.ev-recipe-tag-citrus { background: #FFF3E0; color: #E65100; }
.ev-recipe-tag-green { background: var(--ev-green-light); color: var(--ev-green-dark); }
.ev-recipe-tag-berry { background: #FCE4EC; color: #AD1457; }
.ev-recipe-tag-fresh { background: #E0F7FA; color: #00695C; }
.ev-recipe-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ev-text);
}
.ev-recipe-desc {
  font-size: 14px;
  color: var(--ev-text-light);
  margin-bottom: 12px;
}
.ev-recipe-steps {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
  font-size: 14px;
  color: var(--ev-text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ev-recipe-steps li { list-style: decimal; }

/* ========== TESTIMONIALS ========== */
.ev-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ev-testimonial-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius);
  padding: 32px;
  border: 1px solid var(--ev-border);
  box-shadow: var(--ev-shadow);
  transition: all var(--ev-transition);
}
.ev-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ev-shadow-lg);
}
.ev-testimonial-stars {
  color: var(--ev-yellow);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.ev-testimonial-text {
  font-size: 15px;
  color: var(--ev-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.ev-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.ev-avatar-1 { background: var(--ev-green); }
.ev-avatar-2 { background: var(--ev-orange); }
.ev-avatar-3 { background: #7C4DFF; }
.ev-testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ev-text);
}
.ev-testimonial-role {
  font-size: 13px;
  color: var(--ev-text-muted);
}

/* ========== FAQ ========== */
.ev-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ev-faq-item {
  background: var(--ev-white);
  border-radius: var(--ev-radius-sm);
  border: 1px solid var(--ev-border);
  overflow: hidden;
  transition: box-shadow var(--ev-transition);
}
.ev-faq-item:hover {
  box-shadow: var(--ev-shadow);
}
.ev-faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ev-text);
  text-align: left;
  transition: color var(--ev-transition);
}
.ev-faq-question:hover {
  color: var(--ev-green);
}
.ev-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ev-green-pale);
  color: var(--ev-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--ev-transition);
}
.ev-faq-item[data-state="open"] .ev-faq-icon {
  background: var(--ev-green);
  color: #fff;
  transform: rotate(45deg);
}
.ev-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.ev-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ev-text-light);
  line-height: 1.7;
}
.ev-faq-item[data-state="open"] .ev-faq-answer {
  max-height: 300px;
}

/* ========== FORM SECTION ========== */
.ev-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.ev-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  margin-bottom: 12px;
}
.ev-form-wrapper > p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
}
.ev-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.ev-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ev-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ev-form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.ev-form-input,
.ev-form-select,
.ev-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--ev-radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all var(--ev-transition);
}
.ev-form-input::placeholder,
.ev-form-textarea::placeholder {
  color: rgba(255,255,255,0.45);
}
.ev-form-input:focus,
.ev-form-select:focus,
.ev-form-textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}
.ev-form-select option {
  background: var(--ev-green-dark);
  color: #fff;
}
.ev-form-textarea {
  min-height: 100px;
  resize: vertical;
}
.ev-form-submit {
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--ev-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--ev-transition);
  margin-top: 8px;
}
.ev-form-submit:hover {
  background: #E67A30;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,66,0.35);
}
.ev-impressum-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: underline !important;
  transition: color var(--ev-transition);
}
.ev-impressum-link:hover {
  color: rgba(255,255,255,0.85) !important;
}
.ev-form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 8px;
}

/* ========== CONTACT ========== */
.ev-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.ev-contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}
.ev-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.ev-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ev-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ev-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ev-contact-label {
  font-size: 13px;
  color: var(--ev-text-muted);
  font-weight: 500;
}
.ev-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ev-text);
}
.ev-contact-value a {
  color: var(--ev-green);
}
.ev-contact-value a:hover {
  text-decoration: underline;
}
.ev-map {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--ev-radius);
  border: 1px solid var(--ev-border);
  overflow: hidden;
  box-shadow: var(--ev-shadow);
}

/* ========== FOOTER ========== */
.ev-footer {
  background: var(--ev-text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.ev-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.ev-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff !important;
  margin-bottom: 6px;
}
.ev-footer-logo:hover { text-decoration: none; }
.ev-footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.ev-footer-heading {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.ev-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 3px 0;
  transition: color var(--ev-transition);
}
.ev-footer-col a:hover {
  color: var(--ev-orange);
  text-decoration: none;
}
.ev-footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.ev-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ev-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.ev-footer-legal {
  display: flex;
  gap: 16px;
}
.ev-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.ev-footer-legal a:hover {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

/* ========== MOBILE NAV OVERLAY ========== */
.ev-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(246,250,242,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ev-mobile-overlay.active { display: flex; }
.ev-mobile-overlay a {
  font-size: 20px;
  font-weight: 600;
  color: var(--ev-text);
  padding: 12px 24px;
}
.ev-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: var(--ev-text);
  background: none;
  border: none;
  cursor: pointer;
}

/* ========== LEAFLET TWEAKS ========== */
.leaflet-container { background: #E8F5E0; }
.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  color: var(--ev-text-muted) !important;
  border-radius: 8px !important;
  font-size: 11px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ev-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-recipes-grid {
    grid-template-columns: 1fr;
  }
  .ev-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .ev-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ev-nav, .ev-header-cta { display: none; }
  .ev-burger { display: flex; }

  .ev-hero {
    min-height: 500px;
    background-position: right center;
  }
  .ev-hero-content {
    padding: 60px 0;
  }
  .ev-hero-title {
    font-size: 32px;
  }
  .ev-hero-desc {
    font-size: 16px;
  }

  .ev-section {
    padding: 50px 0;
  }

  .ev-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ev-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ev-gallery-img {
    height: 220px;
  }

  .ev-recipe-card {
    flex-direction: column;
  }
  .ev-recipe-img {
    width: 100%;
    height: 180px;
    min-height: auto;
  }

  .ev-contact-grid {
    grid-template-columns: 1fr;
  }
  .ev-map {
    min-height: 280px;
  }

  .ev-form-row {
    grid-template-columns: 1fr;
  }

  .ev-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ev-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
