/* Responsive CSS - Mobile First Approach */

/* Tablet Styles */
@media (max-width: 1024px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gaming-options {
        grid-template-columns: 1fr;
    }
    
    .casino-area-card {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.5rem;
        --font-size-h3: 1.2rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Header */
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        position: static;
        transform: none;
        left: auto;
    }
    
    .logo img {
        height: 45px;
        max-width: 150px;
    }
    
    .hamburger {
        margin-left: auto;
    }
    
    /* Fullscreen Menu */
    .menu-container {
        padding: 80px var(--spacing-md);
    }
    
    .menu-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .menu-image {
        position: relative;
        height: 300px;
        top: 0;
        order: -1;
    }
    
    .menu-link {
        font-size: 1.3rem;
    }
    
    .submenu {
        padding-left: var(--spacing-md);
    }
    
    /* Video Section */
    .video-overlay-play-button {
        width: 80px;
        height: 80px;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    /* Services */
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .service-card-full {
        grid-column: 1;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .footer-logos {
        padding: var(--spacing-md) 0;
    }
    
    .logos-container {
        gap: var(--spacing-md);
    }
    
    .footer-logo {
        height: 50px;
        max-width: 120px;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Dining Grid */
    .dining-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modals */
    .modal-content {
        width: 95%;
        padding: var(--spacing-md);
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn {
        width: 100%;
    }
    
    /* Typography */
    .intro-text {
        font-size: 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    /* Spacing adjustments */
    .introduction,
    .video-section {
        padding: var(--spacing-lg) 0;
    }
    
    .wp-block-video {
        border-radius: var(--radius-md);
    }
    
    /* Old video styles - remove if not needed */
    .services-grid,
    .rewards-section,
    .page-content {
        padding: var(--spacing-lg) 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .logos-container {
        gap: var(--spacing-sm);
    }
    
    .info-text {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .hero-controls {
        bottom: var(--spacing-sm);
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-controls,
    .modal,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-content {
        padding: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --text-primary: #ffffff;
        --text-gold: #ffd700;
    }
    
    .btn-primary {
        background: #ffd700;
        color: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Already dark by default, but can add adjustments here */
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .page-hero {
        height: 350px;
    }
}

