:root {
    --beige-light: #f6f1e7;
    --beige: #e9dfd2;
    --beige-dark: #d8c9b8;
    --text: #2b2622;
    --shadow: rgba(0,0,0,0.08);
    --radius: 16px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "TT Commons Pro";
    background: var(--beige-light);
    color: var(--text);
    line-height: 1.55;
    font-size: 1.05rem;
    padding-left: 40px;
    
    }
    
/* HEADER */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


nav a {
    margin-right: 0.8rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
}
/* FOOTER */
footer {
 
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.sprache button {
    background-color: #ffffff;   /* deine Wunschfarbe */
    color: #000000;              /* Textfarbe */
    border: 1px solid #ccc;      /* optional */
    padding: 6px 12px;
    border-radius: 6px;          /* abgerundete Ecken */
    cursor: pointer;
}

.sprache button:hover {
    background-color: #e6e6e6;   /* Hover-Farbe */
}

/* HEADER */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-right: 0.8rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.92rem;
}

