* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #111;

    color: #fff;
}


/* =========================
   HERO
========================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    background-image:
        url("images/lkw.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


.overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.55);

}


.hero-content {

    position: relative;

    z-index: 2;

    padding: 30px;

    max-width: 900px;

}


.hero h1 {

    margin: 0 0 20px;

    font-size: clamp(
        2.5rem,
        7vw,
        6rem
    );

    line-height: 1.05;

    font-weight: 800;

    text-shadow:
        2px 2px 8px rgba(0,0,0,0.8);

}


.hero p {

    font-size: 1.4rem;

    margin-bottom: 35px;

}


/* =========================
   BUTTON
========================= */

.contact-button,
.submit-button {

    border: none;

    padding:
        16px 35px;

    border-radius: 8px;

    font-size: 1.1rem;

    font-weight: bold;

    cursor: pointer;

    background: #f5a623;

    color: #111;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


.contact-button:hover,
.submit-button:hover {

    transform: scale(1.04);

    opacity: 0.9;

}


/* =========================
   MODAL
========================= */

.modal {

    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,0.8);

    overflow-y: auto;

}


.modal.active {

    display: flex;

}


.modal-content {

    position: relative;

    width: 100%;

    max-width: 600px;

    margin: 30px auto;

    padding: 40px;

    background: #fff;

    color: #222;

    border-radius: 12px;

    box-shadow:
        0 20px 60px
        rgba(0,0,0,0.5);

}


.modal-content h2 {

    margin-top: 0;

    font-size: 2rem;

}


.form-intro {

    line-height: 1.6;

    color: #555;

}


/* =========================
   CLOSE BUTTON
========================= */

.close-button {

    position: absolute;

    top: 10px;

    right: 15px;

    border: none;

    background: transparent;

    font-size: 35px;

    cursor: pointer;

    color: #333;

}


/* =========================
   FORMULAR
========================= */

.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-weight: bold;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px;

    border:
        1px solid #ccc;

    border-radius: 6px;

    font-size: 1rem;

    font-family: inherit;

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #f5a623;

    box-shadow:
        0 0 0 3px
        rgba(245,166,35,0.2);

}


/* =========================
   DATENSCHUTZ
========================= */

.privacy-check {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    margin-bottom: 25px;

    font-size: 0.9rem;

    line-height: 1.4;

}


.privacy-check input {

    margin-top: 4px;

}


.required-info {

    margin-top: 15px;

    font-size: 0.8rem;

    color: #666;

}


/* =========================
   HONEYPOT
========================= */

.honeypot {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;

}


/* =========================
   MOBILE
========================= */

@media (
    max-width: 600px
) {

    .hero-content {

        padding: 20px;

    }


    .hero p {

        font-size: 1.1rem;

    }


    .modal-content {

        padding: 25px 20px;

    }

}