:root {
    --beige-light: #f6f1e7;
    --beige: #e9dfd2;
    --beige-dark: #d8c9b8;
    --text: #502f13;;
    --shadow: rgba(0,0,0,0.08);
    --radius: 16px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "The Seasons";
    background: var(--beige-light);
    color: var(--text);
    line-height: 1.55;
    font-size: 1.05rem;
    padding-left: 40px;
    padding-right: 100px;
    background: url("Bilder/hintergrund2.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #502f13;
    

    
    }
    
/* HEADER */
header {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}


nav a {
    margin-right: 0.8rem;
    text-decoration: none;
    color: var(--text);
    font-size: 1.2rem;
}
/* FOOTER */
footer {
 
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.sprache button {
    background-color: #ffffff;   /* deine Wunschfarbe */
    color:  #502f13;;              /* Textfarbe */
    border: 1px solid #ccc;      /* optional */
    padding: 6px 25px;
    border-radius: 20px;          /* abgerundete Ecken */
    cursor: pointer;


}

.sprache button:hover {
    background-color: #e6e6e6;   /* Hover-Farbe */
}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {

    body {
        background-attachment: scroll; /* Fix für Handy-Ruckeln */
    }
    
    section {
        padding: 30px 1.2rem;
    }

    /* GRID auf 1 Spalte */
    .items {
        grid-template-columns: 1fr;
        width: 100%;
    }

    /* ÜBER UNS – Reihen untereinander statt nebeneinander */
    #ueber-uns .row {
        flex-direction: column;
        gap: 2rem;
    }

    /* Textbox */
    .textbox {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Bilder-Spalte */
    .bilder {
        align-items: center;
        aspect-ratio: auto;
        max-height: none;
    }

    .bilder img {
        height: 600px;
        width: 75%;
        aspect-ratio: auto;
        max-height: none;
        
    }

    /* Einzelnes Bild */
    .imgwrap {
        width: 75%;
        height: 600px;
        aspect-ratio: auto;
        max-height: none;
    }

    /* Header Navigation */
    nav a {
        margin-right: 0.4rem;
        font-size: 0.95rem;
    }

    /* Accordion */
    details summary {
        font-size: 1.1rem;
    }


    header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding-bottom: 20px;
    }

    /* SPRACHE nach oben */
    .sprache {
        order: -1;
    }

    /* NAVIGATION bleibt darunter */
    nav {
        order: 1;
    }

    nav a {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}

