/* ==================== RESPONSIVE DESIGN ==================== */

/* ===== DESKTOP (1200px+) ===== */
@media (min-width: 1200px) {
    .show-mobile { display: none !important; }
    .show-tablet { display: none !important; }
}

/* ===== TABLET (768px - 1199px) ===== */
@media (min-width: 768px) and (max-width: 1199px) {
    .show-mobile { display: none !important; }
    .show-desktop { display: none !important; }

    html {
        font-size: 15px;
    }

    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-wrap {
        width: min(100% - 30px, 900px);
    }

    .booking-panel,
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE (< 768px) ===== */
@media (max-width: 767px) {
    .show-tablet { display: none !important; }
    .show-desktop { display: none !important; }

    html {
        font-size: 14px;
    }

    /* ===== TYPOGRAPHY ===== */
    h1 {
        font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
    }

    h2 {
        font-size: clamp(1.3rem, 4vw, 2rem) !important;
    }

    h3 {
        font-size: clamp(1.1rem, 3vw, 1.5rem) !important;
    }

    p {
        font-size: 0.9rem;
    }

    /* ===== BUTTONS ===== */
    .btn,
    button {
        width: 100%;
        padding: 12px 16px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-reserve {
        width: 100%;
    }

    /* ===== HEADER ===== */
    header {
        padding: 12px 0;
    }

    .header-container {
        padding: 12px 16px;
    }

    .logo img {
        height: 35px;
    }

    /* ===== MAIN NAV ===== */
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 13, 28, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
        padding: 0;
        border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(167, 139, 250, 0.1);
        display: block;
    }

    .main-nav a::after {
        display: none;
    }

    /* ===== HERO ===== */
    main {
        padding-top: 60px;
    }

    .hero {
        min-height: 90vh;
        padding: 60px 20px 30px;
    }

    .logo-hero-full {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .hero-stamp {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 40px;
    }

    .hero-stamp strong {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    /* ===== GRID & CARDS ===== */
    .home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-card {
        min-height: auto;
        padding: 0;
    }

    .card-header {
        padding: 16px;
    }

    .card-body {
        padding: 16px;
    }

    .card-actions {
        flex-direction: column;
        padding-top: 16px;
    }

    .btn-discover,
    .btn-reserve {
        width: 100%;
    }

    /* ===== SECTIONS ===== */
    .section-wrap {
        width: 100%;
        padding: 16px;
        padding-block: clamp(32px, 4vw, 60px);
        margin-bottom: 20px;
    }

    .activities-heading {
        flex-direction: column;
        gap: 12px;
    }

    /* ===== BOOKING & CONTACT ===== */
    .booking-panel,
    .contact-container,
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .booking-panel h2 {
        grid-column: 1 / -1;
    }

    /* ===== FAQ ===== */
    .faq-list details {
        padding: 12px;
    }

    .faq-list summary {
        font-size: 0.9rem;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 30px 20px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    /* ===== FLOATING BTN ===== */
    #floatingMenuBtn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 479px) {
    html {
        font-size: 13px;
    }

    .header-container {
        gap: 12px;
    }

    .logo {
        gap: 8px;
        font-size: 1.2rem;
    }

    .logo img {
        height: 30px;
    }

    .hero-actions {
        gap: 12px;
    }

    .home-card {
        margin: 0;
    }

    .card-header,
    .card-body {
        padding: 12px;
    }

    .video-container {
        aspect-ratio: 16 / 9;
    }

    .jokers-grid {
        grid-template-columns: 1fr;
    }

    .joker-card {
        padding: 20px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-light: #e5e7eb;
        --text-muted: #9ca3af;
    }
}