/* ==========================================================
   CASAMANCE NATURE
   STYLE.CSS
   ----------------------------------------------------------
   Teil 1
   - Reset
   - Grundlayout
   - Container
   - Header
   - Navigation
   ========================================================== */


/* ==========================================================
   RESET
   ========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-family);

    font-size:var(--font-size-base);

    color:var(--color-text);

    background:var(--color-background);

    line-height:1.65;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}



/* ==========================================================
   CONTAINER
   ========================================================== */

.container{

    width:min(92%,var(--container-width));

    margin:auto;

}



/* ==========================================================
   STANDARD SEKTION
   ========================================================== */

.section{

    padding:var(--section-spacing) 0;

}



/* ==========================================================
   HEADER
   ========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:var(--header-height);

    z-index:var(--z-header);

    transition:var(--transition-normal);

}

.header.scrolled{

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(12px);

    box-shadow:var(--shadow-small);

}



/* ==========================================================
   NAVIGATION
   ========================================================== */

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:100%;

}

.logo img{

    height:60px;

    transition:var(--transition-normal);

}

.navigation ul{

    display:flex;

    gap:42px;

}

.navigation a{

    position:relative;

    font-weight:var(--weight-medium);

    transition:var(--transition-fast);

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--color-accent);

    transition:var(--transition-normal);

}

.navigation a:hover{

    color:var(--color-primary);

}

.navigation a:hover::after{

    width:100%;

}



/* ==========================================================
   NAVIGATION BUTTON
   ========================================================== */

.btn-nav{

    height:50px;

    padding:0 28px;

    border-radius:999px;

    background:var(--color-primary);

    color:var(--color-white);

    font-weight:var(--weight-semibold);

    transition:var(--transition-normal);

    box-shadow:var(--shadow-small);

}

.btn-nav:hover{

    background:var(--color-primary-dark);

    transform:translateY(-2px);

}



/* ==========================================================
   HERO
   ========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background-image:url("../img/hero.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:var(--hero-overlay);

}

.hero .container{

    position:relative;

    z-index:2;

}



/* ==========================================================
   ENDE TEIL 1
   ========================================================== */

   /* ==========================================================
   HERO CONTENT
   ========================================================== */

.hero-content {

    max-width: 620px;

    padding: 42px;

    border-radius: var(--radius-large);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,.20);

    box-shadow: var(--shadow-large);

    color: var(--color-white);

}


/* ==========================================================
   BADGE
   ========================================================== */

.hero-badge {

    display: inline-block;

    margin-bottom: 24px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.16);

    font-size: var(--font-size-sm);

    font-weight: var(--weight-semibold);

    letter-spacing: .3px;

}


/* ==========================================================
   HERO HEADLINE
   ========================================================== */

.hero-content h1 {

    margin-bottom: 28px;

    font-size: clamp(2.8rem, 6vw, 4.8rem);

    font-weight: var(--weight-semibold);

    line-height: 1.08;

    text-wrap: balance;

}


/* ==========================================================
   HERO TEXT
   ========================================================== */

.hero-content p {

    margin-bottom: 38px;

    max-width: 560px;

    font-size: var(--font-size-lg);

    color: rgba(255,255,255,.92);

}


/* ==========================================================
   BUTTONS
   ========================================================== */

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}


/* Gemeinsame Eigenschaften */

.hero-buttons a,
.hero-buttons button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: var(--button-height);

    padding: var(--button-padding);

    border-radius: 999px;

    font-weight: var(--weight-semibold);

    transition: var(--transition-normal);

}


/* Primärer Button */

.btn-primary {

    background: var(--color-primary);

    color: var(--color-white);

    box-shadow: var(--shadow-medium);

}

.btn-primary:hover {

    background: var(--color-primary-dark);

    transform: translateY(-3px);

}


/* Sekundärer Button */

.btn-secondary {

    color: var(--color-white);

    border: 2px solid rgba(255,255,255,.55);

    background: rgba(255,255,255,.08);

}

.btn-secondary:hover {

    background: rgba(255,255,255,.18);

    border-color: rgba(255,255,255,.90);

}


/* ==========================================================
   VERTRAUENSZEILE
   ========================================================== */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 32px;

    font-size: var(--font-size-sm);

    color: rgba(255,255,255,.90);

}


/* ==========================================================
   SCROLL HINWEIS
   ========================================================== */

.hero-scroll {

    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    z-index: 3;

    color: rgba(255,255,255,.88);

    font-size: var(--font-size-sm);

    letter-spacing: 1px;

    animation: floatArrow 2.2s ease-in-out infinite;

    white-space: nowrap;

}


/* ==========================================================
   ANIMATION
   ========================================================== */

@keyframes floatArrow {

    0% {
        transform: translate(-50%,0);
    }

    50% {
        transform: translate(-50%,10px);
    }

    100% {
        transform: translate(-50%,0);
    }

}

/* ==========================================================
   STANDARD-TYPOGRAFIE
   ========================================================== */

.section h2{

    font-size:clamp(2rem,4vw,3.2rem);

    color:var(--color-primary);

    margin-bottom:24px;

    font-weight:var(--weight-semibold);

}

.section p{

    font-size:1.1rem;

    max-width:760px;

    color:var(--color-text);

    margin-bottom:24px;

}


/* ==========================================================
   BUTTONS (GLOBAL)
   ========================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:var(--button-height);

    padding:var(--button-padding);

    border-radius:999px;

    transition:var(--transition-normal);

    font-weight:600;

}


/* ==========================================================
   KARTEN
   ========================================================== */

.card{

    background:var(--color-white);

    border-radius:var(--radius-large);

    padding:40px;

    box-shadow:var(--shadow-small);

    transition:var(--transition-normal);

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-medium);

}


/* ==========================================================
   MODAL (Vorbereitung für Brevo)
   ========================================================== */

.modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.60);

    z-index:var(--z-modal);

}

.modal.active{

    display:flex;

}

.modal-content{

    width:min(92%,520px);

    background:var(--color-white);

    border-radius:var(--radius-large);

    padding:42px;

    box-shadow:var(--shadow-large);

}


/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    padding: 35px 0;
    background: var(--color-primary-dark);
    color: var(--color-white);
    text-align: center;
}


@media (max-width: 600px) {

    footer {
        padding: 28px 20px;
    }

}

/* ==========================================================
   HILFSKLASSEN
   ========================================================== */

.text-center{

    text-align:center;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:40px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:40px;

}


/* ==========================================================
   SANFTE EINBLENDUNG
   ========================================================== */

.fade-in{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-in.visible{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================================
   CASAMANCE
   ========================================================== */

.region-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.region-image img{

    width:100%;

    border-radius:var(--radius-large);

    box-shadow:var(--shadow-medium);

}

.section-tag{

    display:inline-block;

    margin-bottom:16px;

    padding:8px 16px;

    border-radius:999px;

    background:#edf6ef;

    color:var(--color-primary);

    font-size:.9rem;

    font-weight:600;

}

.region-content h2{

    margin-bottom:28px;

}

.region-content p{

    margin-bottom:22px;

    font-size:1.08rem;

}





/* ==========================================================
   WARUM DIESES PROJEKT (am 08.08. eingefügt)
   ========================================================== */

.section-intro{

    max-width:900px;

    margin:0 auto 28px;

    text-align:center;

    font-size:1.15rem;

    line-height:1.8;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}

.vision-card{

    background:var(--color-white);

    padding:36px;

    border-radius:var(--radius-large);

    box-shadow:var(--shadow-small);

    text-align:center;

    transition:var(--transition-normal);

}

.vision-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-medium);

}

.vision-icon{

    font-size:3rem;

    margin-bottom:22px;

}

.vision-card h3{

    margin-bottom:18px;

    color:var(--color-primary);

}

.vision-card p{

    margin:0;

}



/* ==========================================================
   GEMEINSCHAFT (am 08.08. eingefügt)
   ========================================================== */

.community-section{

    background:var(--color-background);

}


.community-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}


/* ----------------------------------------------------------
   COMMUNITY CARD
   ---------------------------------------------------------- */

.community-card{

    background:var(--color-white);

    padding:34px 30px;

    border-radius:var(--radius-large);

    box-shadow:var(--shadow-small);

    text-align:center;

    transition:var(--transition-normal);

}


.community-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-medium);

}


/* ----------------------------------------------------------
   ICON
   ---------------------------------------------------------- */

.community-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:70px;

    height:70px;

    margin:0 auto 22px;

    border-radius:50%;

    background:#edf6ef;

    font-size:2rem;

}


/* ----------------------------------------------------------
   CARD HEADING
   ---------------------------------------------------------- */

.community-card h3{

    margin-bottom:16px;

    color:var(--color-primary);

    font-size:1.15rem;

}


/* ----------------------------------------------------------
   CARD TEXT
   ---------------------------------------------------------- */

.community-card p{

    margin:0;

    font-size:.98rem;

    line-height:1.7;

}


/* ----------------------------------------------------------
   NOTE
   ---------------------------------------------------------- */

.community-note{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:48px auto 0;

    padding:18px 24px;

    max-width:700px;

    border-radius:var(--radius-medium);

    background:rgba(255,255,255,.75);

    color:var(--color-text);

    font-size:.95rem;

    text-align:center;

}

.community-note strong{

    color:var(--color-primary);

}

/* ==========================================================
   REGION IMAGES
   ========================================================== */

.region-images{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.region-images img{

    width:100%;

    border-radius:var(--radius-large);

    box-shadow:var(--shadow-medium);

}


/* ==========================================================
   FACT CARDS
   ========================================================== */

.region-facts{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:26px;

}

.fact-card{

    padding:28px;

    background:var(--color-white);

    border-radius:var(--radius-large);

    box-shadow:var(--shadow-small);

    transition:var(--transition-normal);

}

.fact-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-medium);

}

.fact-card h3{

    margin-bottom:16px;

    color:var(--color-primary);

    font-size:1.1rem;

}

.fact-card p{

    margin:0;

    font-size:.98rem;

}



/* ==========================================================
   LIGHTBOX
   ========================================================== */

.lightbox{

    position:fixed;

    inset:0;

    z-index:2000;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    visibility:hidden;

    opacity:0;

    transition:opacity .25s ease,
               visibility .25s ease;

}


/* geöffnet */

.lightbox.is-open{

    visibility:visible;

    opacity:1;

}


/* ----------------------------------------------------------
   Hintergrund
   ---------------------------------------------------------- */

.lightbox-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(4px);

}


/* ----------------------------------------------------------
   Inhalt
   ---------------------------------------------------------- */

.lightbox-content{

    position:relative;

    z-index:1;

    width:100%;

    max-width:560px;

    max-height:90vh;

    overflow-y:auto;

    padding:45px;

    background:var(--color-white);

    border-radius:var(--radius-large);

    box-shadow:0 25px 70px rgba(0,0,0,.25);

    text-align:center;

    transform:translateY(20px);

    transition:transform .25s ease;

}


.lightbox.is-open .lightbox-content{

    transform:translateY(0);

}


/* ----------------------------------------------------------
   Schließen
   ---------------------------------------------------------- */

.lightbox-close{

    position:absolute;

    top:15px;

    right:18px;

    width:42px;

    height:42px;

    border:0;

    background:transparent;

    font-size:2rem;

    line-height:1;

    cursor:pointer;

    color:var(--color-text);

}


.lightbox-close:hover{

    color:var(--color-primary);

}


/* ----------------------------------------------------------
   Überschrift
   ---------------------------------------------------------- */

.lightbox-content h2{

    margin-top:20px;

    margin-bottom:18px;

}


.lightbox-content > p{

    line-height:1.7;

}


.lightbox-note{

    margin-bottom:30px;

}


/* ==========================================================
   FORMULAR
   ========================================================== */

.community-form{

    display:flex;

    flex-direction:column;

    gap:12px;

    text-align:left;

}


.community-form label{

    font-weight:600;

}


.community-form input{

    width:100%;

    padding:15px 16px;

    border:1px solid #d7ddd8;

    border-radius:var(--radius-small);

    background:#fff;

    font:inherit;

    transition:border-color .2s ease,
               box-shadow .2s ease;

}


.community-form input:focus{

    outline:none;

    border-color:var(--color-primary);

    box-shadow:0 0 0 3px rgba(50,100,60,.12);

}


.community-form .btn{

    margin-top:8px;

    width:100%;

}


.form-privacy{

    margin:8px 0 0;

    font-size:.82rem;

    line-height:1.5;

    text-align:center;

    opacity:.75;

}


/* ----------------------------------------------------------
   Rückmeldungidth
   ---------------------------------------------------------- */

.form-message{

    display:none;

    margin-top:20px;

    padding:15px;

    border-radius:var(--radius-small);

    text-align:center;

    font-size:.95rem;

}


.form-message.is-visible{

    display:block;

}

/* =========================================================
   COMMUNITY LIGHTBOX
   ========================================================= */

.community-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* Lightbox geöffnet */

.community-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}


/* Dunkler Hintergrund */

.community-lightbox__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.68);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* Hauptfenster */

.community-lightbox__content {
    position: relative;
    z-index: 2;

    width: min(720px, 100%);
    max-height: 92vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 18px;

    padding: 40px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    text-align: center;
}


/* Schließen */

.community-lightbox__close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #2f5d3a;
    color: #ffffff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.community-lightbox__close:hover {
    transform: scale(1.08);
}


/* Logo */

.community-lightbox__logo {
    margin-bottom: 20px;
}

.community-lightbox__logo img {
    width: 180px;
    height: auto;
}


/* Überschrift */

.community-lightbox__content h2 {
    margin: 10px 0 15px;

    color: #2f5d3a;

    font-size: clamp(1.7rem, 4vw, 2.3rem);

    line-height: 1.2;
}


/* Einleitung */

.community-lightbox__intro {
    max-width: 570px;

    margin: 0 auto 10px;

    font-size: 1.05rem;
    line-height: 1.6;

    color: #2d2d2d;
}


/* Geschenk-Hinweis */

.community-lightbox__gift {
    max-width: 590px;

    margin: 0 auto 25px;

    font-size: 1rem;
    line-height: 1.6;

    color: #4a4a4a;
}

.community-lightbox__gift strong {
    color: #2f5d3a;
}


/* =========================================================
   BREVO-BEREICH    (am 14.08. hinzugefügt)
   ========================================================= */

.brevo-form-container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 15px;
    text-align: left;
}

.brevo-form-container iframe {
    display: block;
    width: 100%;
    max-width: 540px;
    height: 430px;
    margin: 0 auto;
    border: 0;
    border-radius: 8px;
}


/*
   Brevo kann eigene Styles mitbringen.
   Diese Regeln sorgen dafür, dass das Formular
   nicht zu breit wird.
*/

.brevo-form-container input {
    max-width: 100%;
    box-sizing: border-box;
}


/* Bestätigungshinweis */

.community-lightbox__confirmation {
    max-width: 540px;

    margin: 15px auto 25px;

    padding: 12px 18px;

    background: #f5f8f1;

    border-left: 4px solid #7a9e3a;

    border-radius: 6px;

    color: #3d4d3d;

    font-size: 0.92rem;
    line-height: 1.5;
}


/* =========================================================
   BROSCHÜRE
   ========================================================= */

.community-lightbox__gift-image {
    width: 100%;

    margin-top: 20px;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15);
}

.community-lightbox__gift-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* Datenschutz */

.community-lightbox__privacy {
    margin: 18px auto 0;

    max-width: 560px;

    font-size: 0.78rem;
    line-height: 1.5;

    color: #777777;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .community-lightbox {
        padding: 12px;
    }

    .community-lightbox__content {
        max-height: 94vh;

        padding: 28px 18px 22px;

        border-radius: 14px;
    }

    .community-lightbox__close {
        top: 10px;
        right: 10px;

        width: 38px;
        height: 38px;

        font-size: 24px;
    }

    .community-lightbox__logo img {
        width: 145px;
    }

    .community-lightbox__content h2 {
        font-size: 1.55rem;

        padding: 0 20px;
    }

    .community-lightbox__intro,
    .community-lightbox__gift {
        font-size: 0.95rem;
    }

    .community-lightbox__gift-image {
        margin-top: 18px;
    }
}
/* Seite hinter der Lightbox nicht scrollen */

body.lightbox-open {
    overflow: hidden;
}

/* =========================================================
   EINWANDBEHANDLUNG – ZWEI WEGE
   ========================================================= */

.approach-section {
    position: relative;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #7aa93a;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.approach-question {
    max-width: 680px;

    margin: 25px auto 12px;

    font-size: clamp(1.25rem, 2.5vw, 1.6rem);

    font-weight: 600;

    line-height: 1.5;

    color: #2f5d3a;
}


/* ACCORDION */

.approach-accordion {
    max-width: 850px;

    margin: 40px auto 0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


.approach-toggle {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 28px;

    border: none;

    background: #f5f8f1;

    color: #2f5d3a;

    font-family: inherit;

    font-size: 1.05rem;

    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


/* =========================================
   APPROACH ARROW – SAUBERES PLUS / MINUS
   ========================================= */

.approach-toggle .approach-arrow {
    position: relative;

    display: inline-block;

    width: 24px;
    height: 24px;

    flex-shrink: 0;

    font-size: 0;

    transform: none !important;
}


/* waagerechter Balken */

.approach-toggle .approach-arrow::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    background: currentColor;

    transform: translate(-50%, -50%);
}


/* senkrechter Balken */

.approach-toggle .approach-arrow::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 2px;
    height: 14px;

    background: currentColor;

    transform: translate(-50%, -50%);

    transition: opacity 0.2s ease;
}


/* geöffnet: senkrechten Balken ausblenden */

.approach-toggle[aria-expanded="true"]
.approach-arrow::after {
    opacity: 0;
}

.approach-answer {
    padding: 35px 40px 40px;

    color: #333333;

    line-height: 1.7;
}


.approach-answer h3 {
    margin-top: 0;

    margin-bottom: 20px;

    color: #2f5d3a;

    font-size: 1.45rem;
}


.approach-answer p {
    margin-bottom: 20px;
}


/* WERTSCHÖPFUNGSKETTE */

.value-chain {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin: 30px 0;

    padding: 20px;

    background: #f5f8f1;

    border-radius: 12px;

    color: #2f5d3a;

    font-weight: 600;

    text-align: center;
}


.value-arrow {
    color: #7aa93a;

    font-size: 1.2rem;
}


/* KERNAUSSAGE */

.approach-statement {
    margin: 30px 0;

    padding: 25px 30px;

    background: #2f5d3a;

    color: #ffffff;

    border-radius: 14px;

    text-align: center;
}


.approach-statement p {
    margin: 0 0 8px;

    font-size: 1rem;
}


.approach-statement strong {
    display: block;

    font-size: 1.25rem;

    line-height: 1.5;
}


.approach-conclusion {
    font-weight: 700;

    color: #2f5d3a;
}


/* ÜBERGANG */

.section-transition {
    margin-top: 55px;

    text-align: center;
}


.section-transition p {
    margin-bottom: 10px;

    color: #666666;
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2f5d3a;

    font-weight: 700;

    text-decoration: none;
}


.text-link:hover {
    color: #7aa93a;
}


.text-link span {
    transition: transform 0.2s ease;
}


.text-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ÜBER UNS
   ========================================================= */

.about-section {
    position: relative;
}


.about-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.9fr)
        minmax(300px, 1.1fr);

    gap: 55px;

    align-items: center;

    margin-top: 45px;
}


/* FOTO */

.about-photo img {
    display: block;

    width: 100%;

    height: auto;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}


.photo-caption {
    margin: 12px 0 0;

    color: #777777;

    font-size: 0.85rem;

    text-align: center;
}


/* TEXT */

.about-content h3 {
    margin-top: 0;

    margin-bottom: 20px;

    color: #2f5d3a;

    font-size: 1.6rem;
}


.about-content p {
    margin-bottom: 18px;

    color: #333333;

    line-height: 1.75;
}


.about-content strong {
    color: #2f5d3a;
}


/* VERTRAUENSKARTEN */

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 55px;
}


.trust-card {
    padding: 25px 18px;

    background: #ffffff;

    border-radius: 14px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    border: 1px solid rgba(122, 169, 58, 0.12);
}


.trust-icon {
    margin-bottom: 12px;

    font-size: 2rem;
}


.trust-card h3 {
    margin: 0 0 10px;

    color: #2f5d3a;

    font-size: 1.05rem;
}


.trust-card p {
    margin: 0;

    color: #666666;

    font-size: 0.9rem;

    line-height: 1.5;
}


/* ABSCHLUSS */

.about-conclusion {
    max-width: 780px;

    margin: 60px auto 0;

    text-align: center;

    color: #444444;

    line-height: 1.7;
}


.about-conclusion p {
    margin-bottom: 18px;
}


.about-highlight {
    color: #2f5d3a;

    font-size: 1.15rem;

    font-weight: 600;
}


.about-final {
    margin-top: 30px;

    font-size: 1.25rem;

    color: #2f5d3a;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .approach-toggle {
        padding: 20px;
    }


    .approach-answer {
        padding: 28px 22px 30px;
    }


    .value-chain {
        flex-direction: column;

        gap: 5px;
    }


    .value-arrow {
        transform: rotate(90deg);
    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .about-conclusion {
        margin-top: 45px;
    }

}
/* =========================================
   UNSERE VISION – AUFKLAPPBEREICH
   ========================================= */

.vision-accordion {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
}


/* Button */

.vision-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 22px 28px;

    border: none;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.72);

    color: var(--color-primary, #2f5d3a);

    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

.vision-toggle:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vision-toggle:active {
    transform: scale(0.99);
}


/* Plus / Minus */

.vision-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;

    transition: transform 0.25s ease;
}


/* Antwortbereich */

.vision-answer {
    margin-top: 22px;
    padding: 30px 32px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.78);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    color: #444;

    font-size: 1.05rem;
    line-height: 1.75;

    text-align: left;
}

.vision-answer h3 {
    margin-top: 0;
    margin-bottom: 24px;

    color: var(--color-primary, #2f5d3a);

    font-size: 1.35rem;
    line-height: 1.4;
}

.vision-answer p {
    margin: 0 0 20px;
}

.vision-answer p:last-child {
    margin-bottom: 0;
}


/* Hervorgehobener Abschlusssatz */

.vision-highlight {
    margin-top: 30px;
    padding: 22px 24px;

    border-left: 4px solid #7a9e3a;
    border-radius: 0 14px 14px 0;

    background: rgba(122, 158, 58, 0.08);

    color: #2f5d3a;

    text-align: center;
}

.vision-highlight p {
    margin: 0;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .vision-accordion {
        margin-top: 30px;
    }

    .vision-toggle {
        padding: 19px 20px;

        border-radius: 18px;

        font-size: 1.05rem;
    }

    .vision-arrow {
        width: 22px;
        height: 22px;

        font-size: 1.45rem;
    }

    .vision-answer {
        padding: 24px 20px;

        border-radius: 18px;

        font-size: 1rem;
        line-height: 1.65;
    }

    .vision-answer h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .vision-highlight {
        padding: 20px 16px;
    }

}

/* =========================================
   PLUS / MINUS DER ACCORDIONS
   ========================================= */

.approach-arrow,
.vision-arrow {
    position: relative;

    display: inline-block;

    width: 24px;
    height: 24px;

    font-size: 0;

    flex-shrink: 0;
}


/* horizontale Linie */

.approach-arrow::before,
.vision-arrow::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    background: currentColor;

    transform: translate(-50%, -50%);

    transition: transform 0.25s ease;
}


/* vertikale Linie = Plus */

.approach-arrow::after,
.vision-arrow::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 2px;
    height: 14px;

    background: currentColor;

    transform: translate(-50%, -50%);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* geöffnet = nur horizontale Linie */

.approach-toggle[aria-expanded="true"] .approach-arrow::after,
.vision-toggle[aria-expanded="true"] .vision-arrow::after {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        scaleY(0);
}

/* =========================================
   KORREKTUR: PLUS/MINUS "UNSERE GEDANKEN"
   ========================================= */

.approach-toggle .approach-arrow {
    position: relative;

    display: inline-block;

    width: 24px;
    height: 24px;

    font-size: 0;

    transform: none;
}

/* Horizontale Linie */

.approach-toggle .approach-arrow::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    background: currentColor;

    transform: translate(-50%, -50%);
}

/* Vertikale Linie des Plus */

.approach-toggle .approach-arrow::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 2px;
    height: 14px;

    background: currentColor;

    transform: translate(-50%, -50%);

    transition: opacity 0.2s ease;
}

/* Bei geöffnetem Bereich: nur horizontaler Balken */

.approach-toggle[aria-expanded="true"] .approach-arrow::after {
    opacity: 0;
}



/* =====================================================
   LETZTER CTA – GEMEINSCHAFT
   ===================================================== */

.community-cta {
    position: relative;

    margin-top: 70px;
    padding: 65px 20px;

    background: #2f5d3a;
    color: #ffffff;

    text-align: center;

    overflow: hidden;
}


.community-cta-inner {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}


/* Kleine Überschrift */

.community-cta .section-label {
    color: #dce9c8;
}


/* Hauptüberschrift */

.community-cta h2 {
    margin: 12px 0 25px;

    color: #ffffff;

    font-size: clamp(2rem, 5vw, 3rem);

    line-height: 1.2;
}


/* Einleitung */

.community-lead {
    max-width: 650px;

    margin: 0 auto 25px;

    color: #ffffff;

    font-size: 1.3rem;

    font-weight: 600;

    line-height: 1.5;
}


/* Allgemeiner Text im CTA */

.community-cta p:not(.community-lead):not(.community-gift):not(.community-note) {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    color: rgba(255, 255, 255, 0.92);

    line-height: 1.75;
}


/* Hervorgehobene Aussage */

.community-highlight {
    max-width: 700px;

    margin: 40px auto 35px;

    padding: 22px 25px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 1.25rem;
}


/* =====================================================
   HAUPT-BUTTON
   ===================================================== */

.community-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 16px 30px;

    border: none;

    border-radius: 999px;

    background: #ffffff;

    color: #2f5d3a !important;

    font-family: inherit;

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.3;

    text-align: center;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


.community-cta-button:hover {
    background: #f5f8f1;

    color: #245332 !important;

    transform: translateY(-2px);

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}


.community-cta-button:active {
    transform: translateY(0);
}


/* Pfeil */

.community-cta-button span {
    color: #2f5d3a;

    font-size: 1.25rem;

    transition: transform 0.2s ease;
}


.community-cta-button:hover span {
    transform: translateX(4px);
}


/* =====================================================
   GESCHENK-HINWEIS
   ===================================================== */

.community-gift {
    max-width: 600px;

    margin: 28px auto 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 0.95rem;

    line-height: 1.6;
}


.community-gift strong {
    color: #ffffff;
    font-weight: 700;
}


/* Hinweis */

.community-note {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.8rem;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .community-cta {
        margin-top: 55px;

        padding: 55px 20px;
    }


    .community-cta h2 {
        font-size: 2rem;
    }


    .community-lead {
        font-size: 1.15rem;
    }


    .community-highlight {
        margin-top: 30px;
        margin-bottom: 28px;

        padding: 20px;
    }


    .community-cta-button {
        width: 100%;

        max-width: 360px;

        padding: 15px 20px;

        font-size: 0.95rem;
    }

}


/* =====================================================
   IMPRESSUM / DATENSCHUTZ
   ===================================================== */

.legal-page {
    min-height: 100vh;

    margin: 0;

    background: #f7f5ef;

    color: #333;
}


.legal-container {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 40px 20px 70px;
}


/* -----------------------------------------------------
   ZURÜCK-LINK
   ----------------------------------------------------- */

.back-home {
    display: inline-block;

    margin-bottom: 45px;

    color: #2f5d3a;

    font-size: 0.95rem;

    font-weight: 600;

    text-decoration: none;

    transition: opacity 0.2s ease;
}


.back-home:hover {
    opacity: 0.7;
}


/* -----------------------------------------------------
   INHALT
   ----------------------------------------------------- */

.legal-content {
    padding: 50px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);
}


.legal-content h1 {
    margin-top: 0;

    margin-bottom: 45px;

    color: #2f5d3a;

    font-size: clamp(2rem, 5vw, 2.8rem);

    line-height: 1.2;
}


.legal-content h2 {
    margin-top: 38px;

    margin-bottom: 15px;

    color: #2f5d3a;

    font-size: 1.2rem;

    line-height: 1.4;
}


.legal-content p {
    margin: 0 0 18px;

    font-size: 0.95rem;

    line-height: 1.75;
}


.legal-content a {
    color: #2f5d3a;

    text-decoration: underline;
}


.legal-update {
    margin-top: 50px !important;

    padding-top: 20px;

    border-top: 1px solid #ddd;

    color: #777;

    font-size: 0.8rem !important;
}


/* -----------------------------------------------------
   FOOTER
   ----------------------------------------------------- */

.legal-footer {
    padding: 25px 20px;

    background: #1f3f2a;

    color: rgba(255, 255, 255, 0.6);

    text-align: center;
}


.legal-footer p {
    margin: 0;

    font-size: 0.8rem;
}


/* -----------------------------------------------------
   MOBILE
   ----------------------------------------------------- */

@media (max-width: 600px) {

    .legal-container {
        padding: 25px 15px 50px;
    }


    .back-home {
        margin-bottom: 25px;
    }


    .legal-content {
        padding: 30px 22px;

        border-radius: 14px;
    }


    .legal-content h1 {
        margin-bottom: 35px;
    }


    .legal-content h2 {
        margin-top: 32px;
    }

}

/* =========================================================
   COMMUNITY LIGHTBOX – HAUPT-CTA
   ========================================================= */

.community-lightbox .community-submit {
    display: block;
    margin: 24px auto 28px;
    padding: 15px 30px;

    background-color: #2f6840;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    cursor: pointer;
    text-align: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Pfeil */

.community-lightbox .community-submit span {
    margin-left: 8px;
    color: #ffffff;
}


/* Hover */

.community-lightbox .community-submit:hover {
    background-color: #245332;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   TEXTE AUF DEM DUNKELGRÜNEN HINTERGRUND
   ========================================================= */

.community-lightbox .community-lightbox__content p {
    color: rgba(255, 255, 255, 0.94);
}


/* Hervorgehobene Textstellen */

.community-lightbox .community-lightbox__content strong {
    color: #ffffff;
    font-weight: 700;
}

/* =========================================================
   COMMUNITY LIGHTBOX – LEAD-TEXT
   ========================================================= */

.community-lightbox .community-lead {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    margin: 25px auto;
}

/* =========================================================
   COMMUNITY LIGHTBOX – GESCHENK / BROSCHÜRE
   ========================================================= */

.community-lightbox .community-gift {
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    margin: 25px auto;
    max-width: 620px;
}


/* Titel der Broschüre */

.community-lightbox .community-gift strong {
    color: #ffffff;
    font-weight: 700;
}

/* =========================================================
   STICKY COMMUNITY BUTTON
   ========================================================= */

.sticky-community-button {

    display: none;

    position: fixed;

    top: 18px;
    right: 30px;

    z-index: 1000;

    padding: 13px 26px;

    border: none;
    border-radius: 999px;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


/* Sobald der Sticky-Button aktiviert wird */

.sticky-community-button.is-visible {

    display: inline-flex;

    align-items: center;
    justify-content: center;

}

/* =========================================================
   FOOTER – CASAMANCE NATURE
   ========================================================= */

.site-footer {
    background: #1f3f2a;
    color: #ffffff;
    padding: 50px 30px 20px;
}


/* ---------------------------------------------------------
   FOOTER INNER
   --------------------------------------------------------- */

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 60px;

    align-items: start;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.footer-logo {
    display: block;

    width: 180px;
    max-width: 100%;
    height: auto;

    margin-bottom: 20px;
}


/* ---------------------------------------------------------
   BRAND-TEXT
   --------------------------------------------------------- */

.footer-brand p {
    margin: 0;

    max-width: 360px;

    color: rgba(255, 255, 255, 0.78);

    line-height: 1.6;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.footer-nav a {
    color: rgba(255, 255, 255, 0.9);

    text-decoration: none;

    transition: opacity 0.2s ease;
}


.footer-nav a:hover {
    opacity: 0.7;
}


/* ---------------------------------------------------------
   KONTAKT
   --------------------------------------------------------- */

.footer-contact h3 {
    margin: 0 0 15px;

    color: #ffffff;
}


.footer-contact p {
    margin: 0 0 8px;

    color: rgba(255, 255, 255, 0.78);
}


.footer-contact a {
    color: rgba(255, 255, 255, 0.9);

    text-decoration: none;
}


/* ---------------------------------------------------------
   COPYRIGHT
   --------------------------------------------------------- */

.footer-bottom {
    max-width: 1100px;

    margin: 40px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.8rem;
}


/* =========================================================
   FOOTER – MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 40px 20px 20px;
    }


    .footer-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-logo {
        width: 150px;
    }


    .footer-brand p {
        max-width: 100%;
    }


    .footer-bottom {
        margin-top: 30px;
    }

}

/* =========================================================
   COMMUNITY CTA – WEISSE TEXTFARBE
   ========================================================= */

.community-cta .community-lead {
    color: #ffffff;
}

.community-cta .community-gift {
    color: rgba(255, 255, 255, 0.9);
}

.community-cta .community-gift strong {
    color: #ffffff;
}



/* ==========================================================
   ENDE STYLE.CSS
   Version 1.0
   ========================================================== */