/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  color: #E6F2E0;
  background: linear-gradient(135deg, #181E1A 0%, #374A2F 100%);
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
  transition: background 0.6s cubic-bezier(.7,.3,.3,.9);
}

:root {
  --primary: #374A2F;
  --secondary: #F2F6EC;
  --secondary-dark: #252D22;
  --accent: #9C806A;
  --accent-dark: #684D32;
  --text-main: #E6F2E0;
  --text-invert: #23281F;
  --card-bg: #22291E;
  --neon-green: #84FFD2;
  --neon-blue: #61A7FF;
  --box-radius: 18px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

p, ul, ol {
  margin-bottom: 18px;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text-main);
}

ul, ol {
  padding-left: 20px;
}
ul li, ol li { margin-bottom: 10px; }

strong { color: var(--neon-green); }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(36, 51, 32, 0.82);
  border-radius: var(--box-radius);
  box-shadow: 0 6px 36px 0 rgba(0,0,0,.22);
  padding: 36px 28px;
  color: var(--text-main);
}

/* ===== HEADER & NAV ===== */
header {
  background: rgba(33, 41, 32, 0.98);
  box-shadow: 0 2px 14px 0 rgba(0,0,0,.14);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 78px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  color: var(--neon-green);
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--neon-blue), var(--accent) 80%);
  transition: width 0.25s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon-blue);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
/* Hide nav on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
}

.button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 36px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .18s, transform .14s;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(80,255,200,.12);
  letter-spacing: .02em;
  position: relative;
}
.button.primary {
  background: var(--neon-blue);
  color: #111d13;
  border: 1.5px solid var(--neon-blue);
  box-shadow: 0 0 0 2px transparent;
}
.button.accent {
  background: var(--accent);
  color: #fffaff;
  border: 1.5px solid var(--accent);
}
.button:hover, .button:focus {
  background: var(--neon-green);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 36px 0 rgba(130,255,200,.19);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-green);
  font-size: 2.3rem;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 10px;
  z-index: 102;
  border-radius: 12px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,.mobile-menu-toggle:hover {
  background: rgba(87,255,203,0.12);
}
@media (max-width: 900px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(27, 36, 30, 0.99);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.74,.04,.4,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon-green);
  font-size: 2.2rem;
  padding: 12px 24px;
  margin-top: 14px;
  margin-right: 14px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 230;
  border-radius: 12px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(41,230,177,0.13);
}
.mobile-nav {
  margin: 36px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 80%;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--neon-green);
  font-size: 1.3rem;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.17s, transform 0.12s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(130,255,200,.09);
  color: var(--neon-blue);
  transform: scale(1.04);
}

@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}


/* ===== HERO SECTIONS ===== */
.hero, .services-hero, .references-hero,
.workshops-hero, .garten-hero, .kontakt-hero, .thank-you {
  width: 100%;
  background: linear-gradient(130deg, #1A2220 0%, #2D402C 49%, #2A4D38 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 56px;
  overflow: hidden;
}
.hero .content-wrapper, .services-hero .content-wrapper, .references-hero .content-wrapper,
.workshops-hero .content-wrapper, .garten-hero .content-wrapper, .kontakt-hero .content-wrapper, .thank-you .content-wrapper {
  background: rgba(55,74,47,0.80);
  padding: 44px 28px 42px 28px;
  border-radius: 22px;
  box-shadow: 0 5px 40px 0 rgba(0,255,180,.10), 0 1.5px 7px 0 rgba(12,22,11,.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 660px;
}
.hero h1, .services-hero h1, .references-hero h1,
.workshops-hero h1, .garten-hero h1, .kontakt-hero h1, .thank-you h1 {
  color: #C8FFD3;
  margin-bottom: 0;
}
.hero .subheadline {
  color: var(--neon-green);
  font-size: 1.08rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero .button {
  margin-top: 16px;
}

/* ===== FEATURES & CARDS ===== */
.feature-grid, .features, .about-features .content-wrapper,
.services-detail .content-wrapper, .garten-services .content-wrapper,
.workshops-overview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card,
.service-card,
.workshop-card {
  background: var(--card-bg);
  color: #C8FFD3;
  padding: 30px 28px 26px 28px;
  border-radius: var(--box-radius);
  box-shadow: 0 3.5px 24px 0 rgba(8,255,170,.09);
  min-width: 245px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.16s;
  border: 1.5px solid rgba(130,255,200,.13);
  position: relative;
  overflow: hidden;
}
.feature-card:hover, .service-card:hover, .workshop-card:hover {
  box-shadow: 0 10px 60px 0 rgba(89,255,200,.23), 0 0px 2.5px 0 rgba(140,255,203,.25);
  transform: translateY(-4px) scale(1.035);
  border-color: var(--neon-green);
}
.feature-card img, .garten-features li img, .kontakt-details li img, .footer-contact img {
  height: 38px;
  width: 38px;
  margin-bottom: 13px;
}
.feature-card h3 {
  color: var(--neon-blue);
  font-size: 1.22rem;
}
.feature-price, .service-price {
  color: var(--neon-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
}

.pricing-hint {
  color: var(--text-main);
  font-size: 0.96rem;
  background: rgba(16,26,19,0.88);
  padding: 13px 22px;
  border-radius: 13px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-style: italic;
  border: 1px solid rgba(90,211,150,0.17);
}
.service-card {
  min-width: 230px;
  flex: 1 1 260px;
}

/* Card container shared layout classes */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--box-radius);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 18px 0 rgba(90,255,200,.10);
  flex: 1 1 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .feature-grid, .features, .about-features .content-wrapper, .services-detail .content-wrapper, .garten-services .content-wrapper, .workshops-overview .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  color: var(--text-invert);
  box-shadow: 0 4px 32px 0 rgba(24,255,220,0.15);
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border-left: 4px solid var(--neon-blue);
}
.testimonial-card blockquote, .testimonial-card cite {
  color: var(--text-invert);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.testimonial-card cite {
  font-size: 0.92rem;
  opacity: 0.8;
  font-style: normal;
}
@media (max-width: 900px){
  .testimonial-card {
    min-width: 170px;
    max-width: 100%;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #21261F 0%, #357058 130%);
  padding: 44px 20px 42px 20px;
  border-radius: 20px;
  margin: 60px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  box-shadow: none;
  padding: 0;
}
.cta-banner h2 { color: var(--neon-green); margin-bottom: 2px; }
.cta-banner p { color: #C8FFD3; }
.cta-banner .button {
  margin: 8px 8px 0 0;
}

/* About Features and Garten Features */
.about-features .content-wrapper > ul,
.garten-features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.garten-features li,
.about-features li {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 26px 18px;
  color: #BDE2C8;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  flex: 1 1 230px;
  font-size: 1rem;
  box-shadow: 0 2.5px 20px 0 rgba(100,255,200,.09);
  border-left: 4px solid #61A7FF;
}

/* Contact Info blocks */
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #E8FFE4;
  margin-bottom: 12px;
  padding-left: 0;
}
.contact-info a {
  text-decoration: underline;
  color: var(--neon-green);
  transition: color .17s;
}
.contact-info a:hover { color: var(--neon-blue); }
.location-map .text-section {
  background: none;
  box-shadow: none;
  padding: 0;
  color: var(--neon-green);
}
.location-map { width: 100%; }

@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}


/* ====== FOOTER ====== */
footer {
  background: #181F17;
  color: #C8FFD3;
  padding: 32px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-links, .footer-contact, .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #B8FFD3;
  font-size: 1rem;
  text-decoration: none;
  background: none;
  transition: color .13s;
  margin: 0 5px;
}
.footer-links a:hover, .footer-links a:focus{ color: var(--neon-green); text-decoration: underline; }
.footer-contact span { display: flex; align-items: center; gap: 8px; color: #bff5e1; font-size: 0.98rem; }
.footer-social img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px #61A7FF44);
  margin-left: 8px;
  opacity: 0.85;
  transition: opacity .13s, filter .13s;
}
.footer-social img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 14px #84FFD244);
}

/* ===== FAQ ===== */
.faq, .faq-short {
  margin-top: 40px;
  margin-bottom: 56px;
  background: rgba(32,55,28,0.82);
  border-radius: 18px;
  box-shadow: 0 2.5px 18px 0 rgba(44,255,200,.10);
  padding: 32px 18px;
}
.faq-short h2, .faq h2 { color: var(--neon-blue); }

.faq ul, .faq-short ul { list-style-type: disc; color: #DAFBE5; }
.faq li, .faq-short li {color: #DAFBE5; margin-bottom: 13px;}

/* ===== POLICIES / TERMS ===== */
.privacy-policy, .cookie-policy, .terms-of-use, .gdpr {
  padding: 32px 0 44px 0;
}
.privacy-policy h1, .cookie-policy h1, .terms-of-use h1, .gdpr h1 {
  color: var(--neon-blue);
}
.privacy-policy .text-section, .cookie-policy .text-section,
.terms-of-use .text-section, .gdpr .text-section {
  background: rgba(27, 39, 19, 0.90);
  color: #e2ffe1;
  padding: 36px 28px 30px 28px;
  border-radius: 14px;
  box-shadow: 0 1.5px 13px 0 rgba(0,181,120,.10);
  margin: 0 auto;
}

/* ===== THANK YOU / SUCCESS ===== */
.thank-you .content-wrapper {
  background: rgba(43, 74, 47, 0.80);
}
.thank-you h1 { color: var(--neon-green); }

/* ===== ANIMATIONS ===== */
.button, .feature-card, .service-card, .workshop-card, .testimonial-card, .footer-social img {
  transition: box-shadow .21s, transform .18s, color .18s, background .15s;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1600;
  background: rgba(31,43,32,.99);
  color: #E8FFE4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px;
  box-shadow: 0 -2.5px 20px 0 rgba(0,201,163,.22);
  gap: 20px;
  border-radius: 16px 16px 0 0;
  animation: slideUpCookie 0.44s cubic-bezier(.7,.2,.1,1) 1;
}
@keyframes slideUpCookie {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin-bottom: 8px;
  color: #F6FFF7;
  font-size: 1.06rem;
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.button.cookie-accept {
  background: var(--neon-green);
  color: #141D14;
  border: 1.5px solid #19ffaa;
}
.button.cookie-reject {
  background: #222B22;
  color: var(--neon-blue);
  border: 1.5px solid var(--neon-blue);
}
.button.cookie-settings {
  background: transparent;
  color: var(--neon-blue);
  border: 1.5px solid var(--neon-blue);
}
.button.cookie-accept:hover, .button.cookie-reject:hover, .button.cookie-settings:hover {
  transform: translateY(-2.5px) scale(1.03);
  box-shadow: 0 4px 12px 0 rgba(170,255,200,.13);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1700;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(19,28,22,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalBg 0.36s linear 1;
}
@keyframes fadeModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--card-bg);
  color: #EFFFF6;
  border-radius: 20px;
  box-shadow: 0 9px 80px 0 rgba(75,255,200,.22);
  padding: 38px 36px 30px 36px;
  max-width: 440px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownModal 0.41s cubic-bezier(.7,.2,.1,1) 1;
  position: relative;
}
@keyframes slideDownModal {
  from { transform: translateY(-25px) scale(.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.26rem;
  color: var(--neon-green);
  margin-bottom: 0;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 14px 0 0 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #DBFCDB;
  background: rgba(39,54,40,.83);
  border-radius: 12px;
  padding: 11px 15px;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--neon-blue);
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: var(--neon-green);
}
.cookie-category.essential label {
  font-weight: 700;
  color: var(--neon-green);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 20px;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal-close:hover { background: rgba(100,255,210,0.09); }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
  html { font-size: 15px; }
}
@media (max-width: 900px) {
  html { font-size: 15px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .feature-card, .service-card, .workshop-card, .card { min-width: 180px; padding: 25px 13px; }
  .content-wrapper, .feature-grid, .features, .about-features .content-wrapper, .services-detail .content-wrapper, .garten-services .content-wrapper, .workshops-overview .content-wrapper { gap: 16px; }
  section { padding: 24px 5vw; }
  .cta-banner { padding: 34px 11px 32px 11px; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; }
  .section { padding: 32px 5px; margin-bottom: 36px; }
  .about-snippet .container, .about-features .container, .features .container, .feature-grid, .testimonials .container, .content-wrapper { padding: 0; }
  .cta-banner {
    margin: 26px 0 13px 0;
    padding: 28px 3vw 22px 3vw;
    border-radius: 14px;
  }
  .feature-card, .service-card, .workshop-card, .card {
    min-width: 140px;
    padding: 18px 6px;
  }
}

/* ===== GENERAL ACCESSIBILITY ===== */
a, button {
  outline: none;
  transition: box-shadow 0.11s, outline 0.11s;
}
a:focus, button:focus,
.button:focus {
  box-shadow: 0 0 0 3px var(--neon-blue), 0 0 0 7px rgba(33,210,160,0.10);
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
  background: #1B251C;
}
::-webkit-scrollbar-thumb {
  background: var(--card-bg);
  border-radius: 18px;
}

/* ===== CUSTOM SCROLL ANIMATIONS/NEON HIGHLIGHT ===== */
.feature-card, .service-card, .workshop-card, .card {
  position: relative;
}
.feature-card::before, .service-card::before, .workshop-card::before {
  content: '';
  display: block;
  position: absolute;
  left: -7px; top: -7px; right: -7px; bottom: -7px;
  border-radius: 19px;
  box-shadow: 0 0 18px 2px rgba(55,255,210,.09);
  pointer-events: none;
}
.feature-card:hover::before, .service-card:hover::before, .workshop-card:hover::before {
  box-shadow: 0 0 34px 8px var(--neon-green);
  opacity: .07;
}

/* ===== TYPOGRAPHY SCALE (Mobile first) ===== */
h1 { font-size: 2rem; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.10rem; }
@media (min-width:600px){
  h1 { font-size:2.35rem; }
  h2 { font-size:1.65rem; }
  h3 { font-size:1.18rem; }
}
@media (min-width:1000px){
  h1{ font-size:2.7rem; }
  h2{ font-size:2rem; }
  h3 { font-size:1.22rem; }
}

/* =========== END OF CSS =========== */
