/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    /* Header */
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0 0 20px;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
    }

    /* Tours and Services */
    .tours-grid, .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Base Styles */
    body {
        font-size: 14px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Header */
    header .container {
        padding: 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
        height: 400px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    /* Tours and Services */
    .tours-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial {
        min-width: 100%;
    }

    /* Newsletter */
    .newsletter {
        gap: 20px;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    /* Modal */
    .modal-content {
        padding: 20px;
        margin: 20px auto;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        height: 350px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Services */
    .service-card {
        padding: 20px;
    }

    .service-card i {
        font-size: 2rem;
    }

    /* Blog */
    .blog-card {
        min-width: 100%;
    }

    /* Contact */
    .contact-item {
        gap: 10px;
    }

    .contact-item i {
        font-size: 1.2rem;
    }
}
