/* CSS RESET & NORMALIZATION */
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
    display: block;
}
body {
    line-height: 1.6;
    min-height: 100vh;
    background: #fff;
    color: #1a2718;
}
ol,ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    background: none;
}
img,svg {
    max-width: 100%;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
    border: none;
    background: none;
    margin: 0;
    padding: 0;
}
button:focus { outline: 2px solid #68A357; outline-offset: 2px; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #1a2718;
}
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #295D36;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.2rem; margin-bottom: 12px;}
p, li {font-size: 1rem; color: #1a2718;}
.subheadline {
    font-size: 1.25rem;
    color: #68A357;
    margin-bottom: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
}
strong {font-weight: 700; color: #295D36;}

/* CONTAINERS & SECTIONS */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.company-details {
    margin-top: 32px;
    font-size: 1rem;
}

/* SPACING CLASSES */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(41,93,54,0.06);
    padding: 24px;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 6px 32px rgba(104,163,87,0.13);
}
.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;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 24px;
    background: #F1ECDD;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(41,93,54,0.08);
    font-size: 1.1rem;
    color: #1a2718;
    max-width: 500px;
    transition: box-shadow 0.2s;
}
.testimonial-card p {
    color: #295D36;
    font-style: italic;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(104,163,87,0.13);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #f8faf7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Feature grid for index & gartenzubehoer */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.feature-grid li {
    background: #F8FAF7;
    border-radius: 14px;
    padding: 24px 20px 20px 20px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 6px rgba(104,163,87,0.07);
    margin-bottom: 20px;
    transition: box-shadow 0.25s, background 0.2s;
}
.feature-grid li:hover {
    box-shadow: 0 8px 24px rgba(104,163,87,0.13);
    background: #F1ECDD;
}

/* Service List (index) */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.service-list li {
    background: #F8FAF7;
    border-radius: 14px;
    padding: 24px 20px 20px 20px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 1px 6px rgba(41,93,54,0.07);
    margin-bottom: 20px;
    transition: box-shadow 0.22s, background 0.18s;
}
.service-list li strong { color: #68A357; }
.service-list li:hover {
    box-shadow: 0 10px 36px rgba(104,163,87,0.15);
    background: #F1ECDD;
}

/* Benefits List (other pages) */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.benefits-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: #F8FAF7;
    border-radius: 10px;
    padding: 18px 14px;
    min-width: 210px;
    font-size: 1rem;
    flex: 1 1 230px;
    box-shadow: 0 1px 4px rgba(104,163,87,0.05);
    transition: box-shadow 0.18s;
}
.benefits-list li img {
    width: 32px;
    height: 32px;
}
.benefits-list li:hover { box-shadow: 0 6px 16px rgba(104,163,87,0.10);}

/* Values list (about) */
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
.values-list li {
    background: #F8FAF7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    flex: 1 1 200px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(104,163,87,0.04);
}

/* HEADER STYLES */
header {
    background: #fff;
    border-bottom: 1px solid #e9e9e0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(41,93,54,0.03);
}
header .container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
header a img {
    height: 36px;
    margin-right: 26px;
}

.main-nav {
    display: flex;
    flex-direction: row;
    gap: 22px;
    margin-right: auto;
    margin-left: 20px;
}
.main-nav a {
    color: #295D36;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 0;
    position: relative;
    transition: color 0.18s;
}
.main-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #68A357;
    transition: width 0.22s;
    position: absolute;
    bottom: -4px;
    left: 0;
}
.main-nav a:focus, .main-nav a:hover {
    color: #68A357;
}
.main-nav a:focus::after, .main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: #295D36;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 23px;
    padding: 12px 30px;
    margin-left: 24px;
    box-shadow: 0 2px 12px rgba(41,93,54,0.06);
    cursor: pointer;
    transition: background 0.21s, color 0.16s, box-shadow 0.17s;
    border: none;
    display: inline-block;
}
.cta-button:focus, .cta-button:hover {
    background: #68A357;
    color: #fff;
    box-shadow: 0 2px 30px rgba(41,93,54,0.10);
}

/* BURGER MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #295D36;
    cursor: pointer;
    z-index: 103;
    margin-left: 18px;
    line-height: 1;
    transition: color 0.17s;
}
.mobile-menu-toggle:focus,.mobile-menu-toggle:hover {color: #68A357}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(41,93,54,0.97);
    z-index: 104;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 42px;
    padding-left: 24px;
    transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
    transform: translateX(100%);
    opacity: 0;
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}
.mobile-menu-close {
    align-self: flex-end;
    margin-bottom: 22px;
    margin-right: 30px;
    border: none;
    background: none;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    z-index: 105;
    transition: color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {color: #F1ECDD}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 16px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #F1ECDD;
    letter-spacing: 0.01em;
}

/* MAIN & FORMS */
main {
    background: #fff;
    z-index: 1;
}

/* FOOTER */
footer {
    background: #295D36;
    color: #fff;
    padding: 0 0 40px 0;
}
.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 0 0 0;
    border-top: 1px solid #E2E6DD;
}
.footer-logo img {
    height: 51px;
}
.footer-nav, .legal-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a, .legal-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    opacity: 0.85;
    transition: color 0.16s, opacity 0.13s;
    padding: 2px 0;
}
.footer-nav a:focus,.footer-nav a:hover,
.legal-nav a:focus, .legal-nav a:hover {
    color: #F1ECDD;
    opacity: 1;
}
.footer-contact {
    min-width: 220px;
    font-size: 1rem;
    opacity: 0.90;
}
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 14px;
}
.footer-social a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.17s;
}
.footer-social a:focus img, .footer-social a:hover img {
    filter: brightness(2) invert(0.9) sepia(1) hue-rotate(38deg) saturate(2.8);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 -4px 40px rgba(41,93,54,0.10), 0 -1px 0 #e2e6dd;
    z-index: 300;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 8vw 22px 8vw;
    font-size: 1rem;
    transition: transform 0.36s, opacity 0.21s;
}
.cookie-banner.closed {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #295D36;
}
.cookie-banner-actions {
    display: flex;
    gap: 18px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
    border: none;
    border-radius: 23px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    background: #F1ECDD;
    color: #295D36;
    box-shadow: 0 2px 8px rgba(41,93,54,0.08);
    transition: background 0.19s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn-accept {
    background: #68A357;
    color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
    background: #295D36;
    color: #fff;
}
.cookie-btn-reject {
    background: #fff;
    color: #295D36;
    border: 1.5px solid #295D36;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
    background: #E2E6DD;
    color: #295D36;
}
.cookie-btn-settings {
    background: #F1ECDD;
    color: #295D36;
}
.cookie-btn-settings:focus, .cookie-btn-settings:hover {
    background: #68A357;
    color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(41,93,54,0.22);
    z-index: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.26s;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.cookie-modal {
    background: #fff;
    min-width: 320px;
    max-width: 96vw;
    border-radius: 14px;
    padding: 36px 28px 28px 28px;
    box-shadow: 0 12px 60px rgba(41,93,54,0.23);
    z-index: 355;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animate: fadeIn 0.22s;
}
.cookie-modal h3 {color: #295D36; margin-bottom: 10px;}
.cookie-modal label {display: flex; align-items: center; gap: 8px; font-size:1rem; margin-bottom:8px;}
.cookie-modal input[type="checkbox"] {accent-color: #68A357; width:20px; height:20px;}
.cookie-modal-actions {
    display: flex; gap: 16px; margin-top: 20px; justify-content: flex-end;
}

/* MODAL CLOSE X BUTTON */
.cookie-modal-close {
    position: absolute;
    right: 24px;
    top: 14px;
    background: none;
    border: none;
    color: #295D36;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.17s;
    z-index: 360;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {color:#68A357}

/* LINKS & INTERACTIONS */
a {
    color: #295D36;
    transition: color 0.18s, border 0.16s;
}
a:focus, a:hover {color: #68A357;}

/* HR */
hr {
    border: none;
    border-top: 1px solid #e2e6dd;
    margin: 32px 0;
}

/* ANIMATION CLASSES */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.9s forwards;
    animation-delay: 0.17s;
}

/* RESPONSIVE STYLES */
@media (max-width: 1140px) {
    .container {
      max-width: 100%;
      padding: 0 16px;
    }
}
@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 22px;
        align-items: flex-start;
    }
    .footer-contact, .footer-logo, .footer-social {margin-bottom:8px;}
}
@media (max-width: 900px) {
    .feature-grid, .service-list, .benefits-list, .values-list {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    h1 {font-size: 2rem;}
    h2 {font-size: 1.35rem;}
    .container {
        padding: 0 8px;
    }
    .section {
        margin-bottom: 38px;
        padding: 28px 8px;
    }
    header .container {
        min-height: 62px;
        padding-top: 11px;
        padding-bottom: 11px;
    }
    .main-nav {
        display: none;
    }
    .cta-button {
        margin-left: 0;
        padding: 11px 18px;
        font-size: 1rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .feature-grid li, .service-list li, .benefits-list li, .values-list li {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 17px 10px;
    }
    .testimonial-card {
        max-width: 100%;
        font-size: 1rem;
        gap: 10px;
        padding: 14px 10px;
    }
    .footer-wrapper {
        padding: 18px 0 0 0;
        gap: 16px;
        flex-direction: column;
    }
    .footer-logo img {height: 36px;}
    .cookie-banner {
        flex-direction: column;
        gap: 14px;
        padding: 22px 8px;
        font-size: 0.98rem;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    h1 {font-size: 1.2rem;}
    .section {
        margin-bottom: 24px;
        padding: 18px 4px;
    }
    .testimonial-card {margin-bottom: 12px;}
    .cookie-modal {
        padding: 16px 8px 12px 12px;
        min-width: unset; width: 93vw;
    }
}

/* MICRO-INTERACTIONS */
.cta-button, .feature-grid li, .service-list li, .testimonial-card, .card, .footer-social a img, .main-nav a, .cookie-btn-accept, .cookie-btn-reject {
    transition: box-shadow 0.18s, background 0.18s, color 0.18s, filter 0.17s;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 10px; background: #F1ECDD; }
::-webkit-scrollbar-thumb { background: #C9DEB0; border-radius: 10px; }

/* ACCESSIBILITY FOCUS */
a:focus-visible, button:focus-visible {
    outline: 2.5px solid #295D36;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Forms - default */
input[type="text"], input[type="email"], textarea, select {
    border: 1.2px solid #E2E6DD;
    border-radius: 7px;
    padding: 11px 14px;
    font-size: 1rem;
    margin-bottom: 16px;
    width: 100%;
    background: #F8FAF7;
    color: #1a2718;
    transition: border-color 0.19s, background 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
    border-color: #68A357;
    background: #fff;
}

/* Custom utility classes (if used) */
.hide-mobile {display:block;}
@media (max-width:768px){ .hide-mobile{display:none;} }
.block-mobile {display:none;}
@media (max-width:768px){ .block-mobile{display:block;} }

/* Prevent text-overflow */
.feature-grid li, .service-list li, .values-list li {
    word-break: break-word;
}

/* END OF CSS */
