@media (max-width: 1500px) {
    .start-heading .right-area {
        display: none;
    }

    .content {
        padding: 40px 100px;
    }
}

@media (max-width: 1300px) {
    .start-heading .right-area {
        display: none;
    }

    .content {
        padding: 40px 50px;
    }

    #kontakt .right-area {
        display: none;
    }

    #kontakt .left-area {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .instagram-feeds,
    #linkedin-feed {
        --max-width: 180px;
    }

    #tiktok-feeds {
        --max-width: 150px;
    }
}

@media (max-width: 768px) {
    .main-header .burger {
        display: block;
    }

    .nav-left {
        position: fixed;
        top: 0;
        left: -260px;
        height: 100%;
        width: 220px;
        background: var(--color-surface);
        flex-direction: column;
        padding: 70px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        border-right: 1px solid #e5e7eb;
    }

    .nav-left.open {
        left: 0;
        z-index: 10000;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-brand,
    .footer-nav,
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 200px;
    }

    .mobile-section {
        display: block;
    }

    .start-heading .bgvideo {
        z-index: -2;
    }

    .content {
        padding: 40px 20px;
    }

    #kontakt {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 650px) {
    .start-heading .left-area {
        width: auto;
        padding: 0px 30px;
    }
}

@media (max-width: 600px) {

    .instagram-feeds,
    #linkedin-feed,
    #tiktok-feeds {
        --max-width: 150px;
    }

    .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group:nth-child(3) {
        grid-column: span 2;
        /* Nachricht-Feld über volle Breite */
    }

    button {
        grid-column: span 2;
        width: 200px;
        justify-self: start;
    }
}

@media (max-height: 710px) {
    .start-heading .right-area {
        display: none;
    }
}