/* ================= 1200px ================= */

@media(max-width:1200px){

    .hero-content h1{
        font-size: 64px;
    }

    .section-text h2{
        font-size: 40px;
    }

    .parallax-content h2{
        font-size: 42px;
    }

}

/* ================= 992px ================= */

@media(max-width:992px){

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

    .room-cards{
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .hero-content h1{
        font-size: 58px;
    }

}

/* ================= 768px ================= */

@media(max-width:768px){

    .navbar{
        padding: 20px 5%;
    }

    .nav-links{

        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;
        height: 100vh;

        background: rgba(17,17,17,0.96);

        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: 0.5s ease;

        z-index: 1000;
    }

    .nav-links.active{
        right: 0;
    }

    .hamburger{
        display: flex;
        z-index: 1100;
    }

    .nav-buttons{
        margin-left: auto;
        margin-right: 20px;
    }

    .hero{

        padding: 0 5%;
    }

    .hero-content h1{

        font-size: 48px;
    }

    .hero-content p{

        font-size: 18px;
    }

    .hero-buttons{

        flex-direction: column;
        align-items: center;
    }

    .section{

        padding: 80px 5%;
    }

    .section-header h2{

        font-size: 34px;
    }

    .section-text h2{

        font-size: 34px;
    }

    .room-cards{
        grid-template-columns: 1fr;
    }

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

    .parallax-content h2{

        font-size: 34px;
        padding: 0 20px;
    }

    .map-container iframe{

        height: 350px;
    }

}

/* ================= 480px ================= */

@media(max-width:480px){

    .hero-content h1{

        font-size: 40px;
    }

    .hero-content p{

        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary{

        width: 100%;
        text-align: center;
    }

    .logo{

        width: 60px;
    }

    .section-header h2{

        font-size: 28px;
    }

    .section-text h2{

        font-size: 28px;
    }

    .section-text p{

        font-size: 16px;
    }

    .room-info h3{

        font-size: 22px;
    }

    .parallax-content h2{

        font-size: 28px;
    }

}