
@media (min-width: 1200px) {
   
    .nav-links a {
        font-size: 0.9rem;
        font-weight: 400;
    }
   
    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .section-title h2 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-group > label {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .form-row {
        flex-direction: row;
        gap: 25px; 
    }

    .booking-form > .submit-btn {
        font-size: 1rem; 
        font-weight: 500;
    }
    
    .room-type {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .btn {
        font-size: 16px;
        padding: 10px 100px;
    }

    .about-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .btn {
        font-size: 16px;
        font-weight: 500;
        padding: 10px 20px;
        width: 250px;
    }

    
    .slide-content p {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-group > label {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .booking-form > .submit-btn {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .room-type {
        font-size: 1.375rem;
        line-height: 1.4;
    }

    .about-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

}

@media (max-width: 768px) {
    .top-info {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .menu-toggle > .fas {
        font-size: 1.5rem;
        color: var(--accent-color);
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: hsl(0, 0%, 7%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-slider {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-slider img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    
    .btn {
        font-size: 14px;
        font-weight: 500;
        padding: 10px 40px;
    }

    .hero {
        height: 70vh;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-group > label {
        font-size: 1rem;
        font-weight: 500;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .booking-form > .submit-btn {
        font-size: 1rem;
        font-weight: 400;
    }

    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        flex-direction: column;
    }

    .about-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

}
@media (max-width: 576px) {

    .preloader {
        display: none;
    }

    .top-info-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .slide-content .btn {
        /* font-size: 0.875rem; */
        /* font-weight: 500; */
        padding: 10px;

        color: aliceblue;
    }

    .booking-form {
        padding: 15px;
    }

    .form-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .form-group > label {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .booking-form > .submit-btn {
        font-size: 0.875rem;
        padding: 10px;
    }
    
    .rooms-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .rooms-container > .section-title > h2,
    .gallery-container > .section-title > h2,
    .section-container > .section-title > h2,
    .contact-container > .section-title > h2
    {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .room-details > h3,
    .modal-room-price > h2
    {
        font-size: 1.1rem;
    }

    .modal-room-details > h2{
        font-size: 1.4rem;
        font-weight: 700;
    }

    .room-price,
    .modal-room-price > p{
        font-size: 1rem;
    }


    .contact-text > h3 
    {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .footer-col p, 
    .footer-col a {
        font-size: 0.85rem;
    }


    .hero-slider {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-slider img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .about-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }
    
}
