/* Enjoy Events - Responsive Styles */
/* Mobile-first approach */

/* Mobile Styles (base) */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.nav-menu.active {
    display: flex;
}

.menu-toggle {
    display: flex;
}

.hero {
    flex-direction: column;
    text-align: center;
    padding: 5rem 1rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1rem;
}

.hero-image {
    order: -1;
}

.content-section {
    padding: 3rem 1rem;
}

.content-section h2 {
    font-size: 2rem;
}

.content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonials {
    grid-template-columns: 1fr;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: flex;
        position: static;
        background: transparent;
        padding: 0;
        flex-direction: row;
    }

    .menu-toggle {
        display: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        text-align: left;
        min-height: 100vh;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 4rem;
    }

    .hero-image {
        order: 1;
        padding: 4rem;
    }

    .content-section {
        padding: 5rem 2rem;
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-placeholder {
        font-size: 12rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .nav {
        padding: 1rem 3rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1600px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-size: 50px 50px;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-button,
    .menu-toggle {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
    }

    .hero h1,
    .hero-subtitle {
        color: black !important;
        text-shadow: none !important;
    }

    .cta-button {
        background: black !important;
        color: white !important;
        box-shadow: none !important;
    }

    .content-section {
        page-break-inside: avoid;
    }

    .testimonial {
        background: #f0f0f0 !important;
        color: black !important;
        border: 1px solid #ccc;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --gray-light: #2D2D2D;
        --white: #1A1A1A;
        --text-color: #E0E0E0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .image-placeholder {
        animation: none !important;
    }

    .hero::before {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #0000FF;
        --neon-cyan: #00FFFF;
        --neon-magenta: #FF00FF;
    }

    .content-block {
        border: 2px solid var(--primary-purple);
    }

    .testimonial {
        border: 2px solid var(--white);
    }
}


