@media (max-width: 1100px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links li a {
        text-decoration: none;
        color: #ffffff;
        border-bottom: 1px solid var(--secondary-color);
    }

    .nav-links.active {
        display: grid;
        row-gap: 25px;
        padding: 30px;
        margin-top: 15px;
        border-radius: 15px;
        background: rgba(12, 12, 12, 0.958);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        filter: invert(0.95) hue-rotate(180deg);
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        margin: 4px 0;
        transition: var(--transition);
        border-radius: 2px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        transform-origin: center;
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        transform-origin: center;
    }
}


@media (max-width: 800px) {
    :root {
        --transition: none;
    }

    .slider {
        display: none;
    }

    .mobile-video {
        display: block;
    }


    .hero-content {
        z-index: 10000;

        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--secondary-color);
        }
    }

    .video-shadow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.5;
        z-index: 1000;
    }


    .info-section,
    .guide-section,
    .attractions-section,
    .reviews-section {
        padding: 4rem 1.5rem;
    }

    .info-section h2,
    .guide-section h2,
    .attractions-section h2,
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .accordion-content img {
        width: 100%;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
    }    

    .attractions-slider {
        padding: 0 2rem;
    }

    .attraction-slide img {
        height: 300px;
    }

    .attraction-content {
        padding: 0;
    }

    .attraction-content h3 {
        font-size: 1.5rem;
    }

    .attraction-content p {
        font-size: 1rem;
    }

    .prev-slide,
    .next-slide {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .review-links {
        display: grid;
        row-gap: 1.5rem;
    }

    .route-button {
        width: auto;
    
        img {
            width: 20px;
            height: 20px;
        }

        p {
            display: none;
        }
    }

    /* City guide */
    .city-guide-checkpoints-list {
        .checkpoint {
            .heading {
                img {
                    margin: 0 auto;
                }

                .data {
                    p { 
                        display: none;
                    }
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .phone {
        display: none;
    }

    .nav-links .nav-phone {
        display: block;
    }
}

@media (max-width: 430px) {
    .info-section h2, .guide-section h2, .attractions-section h2, .reviews-section h2 {
        font-size: 1.5rem;
    }

    /* City guide */
    .city-guide-checkpoints-list {
        .checkpoint {
            .heading {
                img {
                    height: 40px;
                    width: 60px;
                }

                .data {
                    h4 {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

@media (max-width: 400px) {
    /* City guide */
    .city-guide-checkpoints-list {
        .checkpoint {
            .heading {
                img {
                    display: none;
                }

                .data {
                    h4 {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}
