body {
    background-color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    color: #ffffff;
}

::selection {
    background: #D7B56B;
    color: #fff;
}

.container {
    width: 1200px;
}

h2 {
    color: #D7B56B;
}

header {
    background-color: #2B2A28;
    border-bottom: 5px solid #D7B56B;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 50px;
}

nav {
    display: flex;
    gap: 15px;
}

header a {
    color: #D7B56B;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

header a:hover {
    color: #b19150;
}

.angebot {
    margin-top: 20px;
    text-align: center;
    position: relative;
}

.angebot img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
    margin: 0 auto;
}

.angebot .header-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #2B2A28;
    display: flex;
    align-items: center;
    border-right: 5px solid #D7B56B;
}

.angebot .header-overlay h2 {
    color: #D7B56B;
    text-align: left;
    margin: 0;
    padding: 10px;
    font-size: 25px;
}

.angebot .text {
    color: #2B2A28;
    background-color: #FFFFFF;
    padding: 10px 20px;
    text-align: left;
}

.legal {
    margin-top: 20px;
    color: #2B2A28;
    background-color: #FFFFFF;
    padding: 10px 20px;
    text-align: left;
}

.link {
    color: #D7B56B;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

footer {
    background-color: #2B2A28;
    border-top: 5px solid #D7B56B;
    color: gray;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

.footer-links a {
    margin: 0 10px;
}

@media (max-width: 1000px) {
    header img {
        height: 35px;
    }

    nav h1 {
        font-size: 20px;
    }

    .angebot img {
        height: 200px;
    }

    .angebot .header-overlay h2 {
        font-size: 20px;
    }

    .container {
        width: 100%;
    }
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin: 10px 0 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 12px;
    background: #D7B56B;
    color: #fff;
    border: 0;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.contact-form .note {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

/* Statusnachricht unter dem Formular */
.contact-message {
    margin-top: 12px;
}
.contact-message.success {
    color: #2ecc71;
}
.contact-message.error {
    color: #e74c3c;
}