/* =========================================
   RESPONSIVE DESIGN – ADVENTURE NAVBAR
   ========================================= */

/* ---------- Small desktops & tablets ---------- */
@media (max-width: 1130px) {

    .menu-btn {
        display: block !important;
    }

    .navbar {
        padding: 0 25px !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transform: translateX(100%);
        transition: .4s ease;
        z-index: 999;
    }

        .nav-links.mobile-menu {
            transform: translateX(0);
        }

        .nav-links li {
            width: 100%;
            display: flex;
            justify-content: center;
            margin: 10px 0;
        }

            .nav-links li a {
                width: 85%;
                justify-content: center;
                font-size: 1.05rem;
                padding: 12px 20px !important;
            }

    /* Language Select */
    .lang-item {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

        .lang-item select.language-select {
            width: 85%;
            text-align: center;
        }
}

/* ---------- Tablets ---------- */
@media (max-width: 990px) {

    .contact_us {
        flex-direction: column;
        width: 100%;
    }

    form,
    .cbox {
        width: 90% !important;
        margin: auto auto 30px;
    }

    .row {
        flex-direction: column;
    }

        .row .col {
            width: 90%;
            margin: 20px auto;
        }

    .explore-content {
        width: 90%;
        margin: auto;
        text-align: center;
        padding: 1.5rem;
    }

    .content-col {
        width: 100%;
        text-align: center;
    }

        .content-col .ctn {
            margin: 20px auto !important;
        }
}

/* ---------- Small tablets ---------- */
@media (max-width: 850px) {

    section {
        width: 95%;
        margin: 60px auto;
    }

    .footer {
        padding: 15px !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .image-gallery {
        grid-template-columns: 1fr !important;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {

    body {
        padding-top: 60px;
    }

    .navbar {
        height: 60px;
        padding: 0 20px !important;
    }

    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .menu-btn {
        width: 34px;
    }

    .ctn {
        padding: 10px 25px !important;
        font-size: .95rem;
    }

    .footer-content {
        padding: 20px 15px !important;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 470px) {

    .nav-links li a {
        width: 90%;
        font-size: 1rem;
        padding: 10px 18px !important;
    }

    .ctn {
        padding: 9px 22px !important;
        font-size: .9rem;
    }

    .footer-bottom {
        font-size: .8rem;
        padding: 10px 0;
    }
}

/* ---------- Extra small ---------- */
@media (max-width: 400px) {

    .ctn {
        padding: 8px 20px !important;
        font-size: .85rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        font-size: .9rem;
    }
}

/* ---------- Landscape Mobile ---------- */
@media (max-height: 600px) and (orientation: landscape) {

    .nav-links {
        padding-top: 20px;
        overflow-y: auto;
    }

        .nav-links li {
            margin: 8px auto;
        }

            .nav-links li a {
                padding: 8px 18px !important;
                font-size: .9rem;
            }
}

/* ---------- Large Screens ---------- */
@media (min-width: 1920px) {

    .container {
        max-width: 1400px;
    }

    .footer-content {
        max-width: 1400px;
    }
}

/* ---------- Dark Mode ---------- */
@media (prefers-color-scheme: dark) {

    body {
        background: #1a1a1a;
        color: #f0f0f0;
    }

    .navbar {
        background: rgba(30,30,30,0.95);
    }

    .nav-links {
        background: rgba(30,30,30,0.98);
    }

    .card {
        background: #2a2a2a;
        color: #f0f0f0;
    }

    .footer {
        background: #2a2a2a;
    }

    .footer-bottom {
        background: #222;
    }
}
