/* =========================
   GRUNDLAYOUT
========================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f5f2;
    color: #2c2c2c;
    line-height: 1.8;
}

/* =========================
   HEADER
========================= */

header {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 34px;
    font-weight: normal;
}

header p {
    color: #666;
}

/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;

    background: #eeeae6;
    padding: 12px;

    text-align: center;

    position: sticky;
    top: 0;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

nav a:hover {
    color: #8b6f56;
}


/* =========================
   CONTENT
========================= */

.container {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    font-weight: normal;
    margin-bottom: 20px;
}

p {
    margin-bottom: 18px;
}

/* =========================
   LISTEN
========================= */

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* =========================
   BILDER
========================= */

.image {
    width: 100%;
    height: 280px;
  
    display: flex;
    align-items: center;
    justify-content: center;

    
}

/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    margin-top: 20px;
    padding: 10px 16px;

    background: #333;
    color: white;

    text-decoration: none;
    font-size: 14px;
}

/* =========================
   FOOTER
========================= */

/* =========================
   FOOTER LINKS (IMPRESSUM / DATENSCHUTZ)
========================= */

footer {
    text-align: center;
    padding: 40px;
    font-size: 12px;
    color: #777;
    background: white;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

footer .footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

footer a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #555;
    text-decoration: underline;
}
/* =========================
   MOBILE FEINSCHLIFF
========================= */

@media (max-width: 768px) {

    body {
        font-size: 17px;
        line-height: 1.75;
    }

    .container {
        padding: 36px 22px;
    }

    header {
        padding: 30px 20px 10px;
    }

    header h1 {
        font-size: 1.55rem;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

    nav {
        gap: 10px;
        padding: 14px 16px;
    }

    nav a {
        font-size: 0.95rem;
        padding: 4px 2px;
    }

    h2 {
        font-size: 1.28rem;
        line-height: 1.55;

        margin-top: 42px;
        margin-bottom: 18px;
    }

    p {
        margin-bottom: 20px;
    }

    ul {
        padding-left: 22px;
    }

    li {
        margin-bottom: 10px;
    }

    footer {
        padding: 32px 20px 40px;
        line-height: 1.6;
    }
}