/* Responsive Design */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-split {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .room-select-card {
        flex-direction: column;
    }

    .room-select-img {
        width: 100%;
        height: 250px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Small Devices (Landscape phones, less than 768px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    /* Header Mobile Menu */
    .mobile-toggle {
        display: block;
    }

    .lang-switch {
        margin-bottom: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 2;
    }

    .wizard-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .wizard-steps::before {
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: none;
    }

    .step-indicator {
        margin-right: 1rem;
    }

    .step-wrapper {
        display: flex;
        align-items: center;
        background: var(--white);
        z-index: 1;
        padding-right: 1rem;
    }
    
    .step-wrapper span {
        display: inline-block;
        font-weight: 500;
    }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        column-count: 1;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
