/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
        justify-content: center;
    }

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

    .adventure-section {
        padding: 4rem 0;
    }

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

    .adventure-section p {
        font-size: 1rem;
    }

    /* Location Cards */
    .location-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Activities */
    .activities {
        padding: 4rem 0;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 250px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

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

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* WhatsApp */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-chat button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

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

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

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

    .facility-item i {
        font-size: 2rem;
    }

    .facility-item h3 {
        font-size: 1rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    .activity-content {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .location-card-detailed {
        padding: 1.5rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .header, .whatsapp-chat, .newsletter {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
    }

    .hero-text h1 {
        color: black;
    }

    .section-header h2 {
        color: black;
    }

    * {
        background: white !important;
        color: black !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .header {
        background: rgba(51, 51, 51, 0.95);
    }

    .nav-menu a {
        color: white;
    }

    .logo {
        color: #ff6b35;
    }
}
