body {
    margin: 0;
    font-family: sans-serif;
    background: url('images/haus.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.75);
    max-width: 900px;
    width: 90%;
    margin: 2em auto;
    padding: 2em;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin: 1em 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.wildbret-box {
    background-color: rgba(0,0,0,0.7);
    padding: 2em;
    margin: 2em auto;
    max-width: 900px;
    border-radius: 16px;
    text-align: center;
}

.wildbret-bilder {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-top: 1em;
}

.wildbret-bilder img {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.wildbret-button {
    display: inline-block;
    background-color: #c62828;
    color: white;
    padding: 0.6em 1.2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 1em;
}

.wildbret-button:hover {
    background-color: #a41f1f;
}

.adresse {
    margin-top: 1em;
    font-size: 0.95em;
    opacity: 0.8;
}