* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


body {
    font-family: 'GoogleSans', Arial, sans-serif;
    color: #333;

}

a {
    text-decoration: none;
    color: inherit;
    line-height: 1;
    font-size: 12px;
    font-weight: 800;
    padding: 0;
}

h1 {
    font-family: 'CormorantSC-Reg', serif;
    font-size: 100px;
    font-weight: 700;
    line-height: .7;
    text-transform: none;
}

h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

h4 {
    font-size: 14px;
    font-weight: 400;
}

p em {
    font-style: normal;
    font-weight: 800;
}

p {
    font-size: 15px;
    line-height: 1;
    max-width: 500px;
    font-weight: 300;
    orphans: 2;
    widows: 2;
    hyphens: auto;
}


.arrow-btn {
    background: none;
    border: 1px solid #333;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    font-family: inherit;
    color: #333;
}

.arrow-btn:hover {
    background-color: #333;
    color: white;
    transform: translateX(4px);
}

.arrow-btn svg {
    transition: transform 0.3s ease;
}

.arrow-btn:hover svg {
    transform: translateX(4px);
}

nav {
    position: fixed;
    z-index: 20;
    padding: 1vh;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    top: 0;
}

.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;

    img {
        height: 30px;
    }
}

.nav-chapters,
.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.nav-links {
    justify-content: flex-end;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-title {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(.8);
}

.zwischen {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

section .importance-wrapper {
    margin-top: 200px;
    margin-bottom: 100px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;

    h4 {
        max-width: 550px;
    }

    .importance-image-wrapper img {
        width: 100%;
        max-height: 70vh;
        object-fit: cover;
    }
}

.boxes-wrapper {
    margin-top: 200px;
    padding: 10px 10px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    background-color: #415013;
    color: #fff;

    .philosophy-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .box {
        /* border: 1px solid #333; */
        padding: 20px;

        h1 {
            /* max-width: 400px; */
            font-size: 80px;
            line-height: .8;
            margin-bottom: 20px;
        }

        h2 {
            max-width: 500px;
        }

        h3 {
            margin-bottom: 40px;
            max-width: 400px;
        }

        h4 {
            max-width: 400px;
        }

        .list-item {
            margin-bottom: 50px;
            border-top: 1px solid #fff;
            padding-top: 20px;
            width: 100%;

            h3 {
                margin-bottom: 10px;
            }

            p {
                max-width: 400px;
            }
        }
    }
}

.statements {
    margin-top: 0;
}

.absprung-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
    height: fit-content;

    .absprung-item {
        padding-top: 10px;
        /* border: 1px solid black; */

        img {
            /* display: none; */
            width: 100%;
            height: 100%;
            object-fit: cover;
            max-height: 70vh;
        }

        img:hover {
            filter: brightness(1.2);
        }
    }

    .absprung-item:hover {
        cursor: pointer;
    }
}

.absprung-text {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    margin-top: 200px;
    padding: 20px;
    font-size: 10px;
    color: #777;

    .footer-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        column-gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-bottom {
        margin-top: 20px;
        grid-column: span 12;
    }
}



/* Subsite */
.content-wrapper {
    padding: 10px;
}

.body-intro {
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;

    h4 {
        max-width: 700px;
        text-align: center;
    }
}

.section-recommended {
    margin-top: 5rem;
    margin-bottom: 5rem;

    h2 {
        margin-bottom: 1rem;
    }

    .recommended-container {
        display: flex;

        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        gap: 1rem;

        /* Cards */
        .card {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 600px;
            max-width: 600px;
        }

        .card-img-wrapper {
            position: relative;
            aspect-ratio: 1 / 1;
            height: 60vh;
            width: 100%;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card:hover img {
            filter: brightness(.7);
        }

        .label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 12px;
            font-size: 10px;
            text-transform: uppercase;
        }
    }

}

.section-all {
    margin-top: 10rem;
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);

    .section-all-header {
        display: flex;
        flex-direction: column;

        .category-pills {
            margin-top: 1rem;
            margin-bottom: 1rem;

            .pill {
                background-color: transparent;
                color: #262626;
                border: 1px solid #262626;
                padding: 4px 12px;
                text-transform: uppercase;
            }

            .pill:hover {
                background-color: #262626;
                color: white;
                cursor: pointer;
            }
        }
    }

    .items-grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: .5rem;
        row-gap: 2rem;

        .card-small {
            grid-column: span 1;

            .card-img-wrapper {
                position: relative;
                aspect-ratio: 1 / 1;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }

        .card-small:hover img {
            filter: brightness(.7);
        }
    }

}

.community {
    margin-top: 200px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;

    h1 {
        line-height: .7;
        margin-bottom: 10px;
    }

    p {
        max-width: 350px;
    }

    h3 {
        max-width: 400px;
    }

    .sign-up {
        margin-top: 20px;
        padding: 5px 50px;
        background-color: #262626;
        color: #fff;
        width: fit-content;
    }

    .sign-up:hover {
        background-color: #fff;
        color: #262626;
        border: 1px solid #262626;
        cursor: pointer;
    }

    .community-image-wrapper img {
        width: 100%;
    }
}

/* Blogeintrag */
.blog-eintrag {
    margin-top: 100px;
}

.blog-eintrag-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 100px;
    row-gap: 20px;
    padding: 0 10px;

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    h2 {
        margin-bottom: 20px;
        max-width: 600px;
    }

    p {
        max-width: 450px;
        margin-bottom: 20px;
    }
}

/* --- NEWSLETTER POPUP --- */
.newsletter-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    max-width: 500px;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    h4 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.input-group {
    display: flex;
    gap: 5px;
}

.input-group input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 12px;
}

.input-group button {
    background: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 12px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}


/* Font faces */

@font-face {
    font-family: 'CormorantSC-Reg';
    src: url('fonts/CormorantSC-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GoogleSans';
    src: url('fonts/GoogleSansFlex-VariableFont_GRAD\,ROND\,opsz\,slnt\,wdth\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* Grid stylings */

.span-1 {
    grid-column: span 1;
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.span-4 {
    grid-column: span 4;
}

.span-5 {
    grid-column: span 5;
}

.span-6 {
    grid-column: span 6;
}

.span-7 {
    grid-column: span 7;
}

.span-8 {
    grid-column: span 8;
}

.span-9 {
    grid-column: span 9;
}

.span-10 {
    grid-column: span 10;
}

.span-11 {
    grid-column: span 11;
}

.span-12 {
    grid-column: span 12;
}

/* --- MINIMALISTISCHE RESPONSIVE ANPASSUNG --- */

/* 1. Tablet & kleiner Desktop (max 1024px) */
/* Hier machen wir aus dem 12er-Grid ein 2-spaltiges Layout für die Hauptbereiche */
@media (max-width: 1024px) {

    .absprung-container,
    .items-grid-container,
    .recommended-container {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Erzwingt 2 Spalten */
        display: grid;
    }

    /* Wir überschreiben die festen Spannen, damit sie in das 2er-Raster passen */
    .span-4,
    .span-3,
    .span-6 {
        grid-column: span 1 !important;
    }

    .span-12 {
        grid-column: span 2 !important;
    }

    h1 {
        font-size: 100px;
    }
}

/* 2. Smartphone (max 768px) */
/* Hier brechen wir fast alles auf eine einzige Spalte herunter */
@media (max-width: 768px) {

    /* Alle Grids auf einspaltig setzen */
    .absprung-container,
    .footer-container,
    .recommended-container,
    .section-all {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
    }

    /* Alle Items auf volle Breite */
    [class*="span-"] {
        width: 100% !important;
        grid-column: span 1 !important;
    }

    /* Navigation aufräumen */
    .nav-chapters,
    .nav-links {
        display: none;
    }

    nav {
        display: flex !important;
        width: 100vw;
        justify-content: space-between !important;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    footer {
        padding: 5px !important;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        column-gap: 20px;
        padding: 0px !important;
    }

    /* Abstände und Schrift anpassen */
    h1 {
        font-size: 70px !important;
    }

    .box h1 {
        font-size: 50px !important;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 12px;
        text-align: left !important;
        hyphens: auto;
    }

    p {
        hyphens: none;
        word-break: keep-all !important;
    }

    .hero {
        height: 100vh;

        video {
            filter: brightness(0.7);
            height: 100%;
        }
    }

    .absprung-item {
        height: fit-content !important;
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
        position: relative;
    }

    .absprung-item img {
        height: 50vh !important;
        margin-bottom: 10px;
        filter: brightness(.8);
    }

    .absprung-text {
        text-align: center;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        color: #fff;

        button {
            color: #fff;
            border: 1px solid #fff;
        }
    }

    .body-intro {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .items-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .section-recommended,
    .section-all {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .card {
        margin-bottom: 2rem;
        min-width: 100% !important;
    }

    .importance-wrapper {
        margin-top: 50px !important;
        display: flex !important;
        flex-direction: column-reverse;

        img {
            height: 50vh;
            object-fit: cover;
            margin-bottom: 20px;
        }

        h2 {
            margin-bottom: 10px;
        }
    }

    .boxes-wrapper,
    .community {
        display: block;
        padding: 10px;

        .box {
            margin-bottom: 30px;
        }

        h2 {
            margin-top: 20px;
        }

        h3 {
            margin-top: 10px !important;
            margin-bottom: 10px !important;
        }

        .sign-up {
            margin-top: 40px !important;
            margin: auto;
        }
    }

    .blog-eintrag {
        margin-top: 50px !important;
    }

    .blog-eintrag-container {
        display: block;

        video {
            margin-bottom: 20px;
            height: 50vh;
        }

        h2 {
            margin-bottom: 20px;
        }

        h3 {
            margin-top: 50px;
            margin-bottom: 20px;
        }
    }
}



/* 3. Sehr kleine Handys (max 480px) */
@media (max-width: 480px) {

    h1 {
        font-size: 52px;
    }

    .newsletter-popup {
        width: 95%;
        right: 2.5%;
        left: 2.5%;
    }
}