/*wenn screen-size kleiner als 1200px ist -> desktop-nav verschwindet*/
@media screen and (max-width: 800px) {
    
    #desktop-nav {
        display: none;
    }
    #hamburger-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
        height: 8vh;
        
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .heading {
        font-size: 2rem;
    }

    .section_text {
        font-size: 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .contact-form, .contact-info {
        max-width: 100%;
        width: 100%;
    }

    

    .contact-form .box {
        width: 100%;
    }

    footer .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    
}
@media screen and (max-width: 500px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .heading {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}
