/* Base Responsive Layout */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Layout Changes */
    .about-preview, 
    .casino-highlights {
        flex-direction: column;
    }
    
    .about-image, 
    .highlight-image {
        min-height: 400px;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .scroll-item {
        min-width: 250px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 576px;
    }
    
    html {
        font-size: 14px;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Section Spacing */
    section {
        padding: var(--space-8) var(--space-4);
    }
    
    .about-content, 
    .highlight-content {
        padding: var(--space-6);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        height: 250px;
    }
    
    .scroll-item {
        min-width: 200px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 var(--space-3);
    }
    
    html {
        font-size: 12px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        margin-bottom: var(--space-4);
    }
    
    /* Services Grid */
    .services-container {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Footer Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        margin-top: var(--space-5);
    }
    
    /* Gallery */
    .scroll-item {
        min-width: 250px;
        margin-right: var(--space-3);
    }
    
    /* About Content */
    .about-content,
    .highlight-content {
        padding: var(--space-5) var(--space-3);
    }
    
    .about-image, 
    .highlight-image {
        min-height: 300px;
    }
}

/* Specific Component Responsiveness */

/* Hero Section */
@media (max-width: 768px) {
    .hero-content {
        padding: var(--space-4) var(--space-3);
    }
    
    .cta-button {
        padding: var(--space-2) var(--space-4);
    }
}

/* Navigation */
@media (max-width: 992px) {
    .main-header {
        padding: var(--space-3) var(--space-4);
    }
    
    .main-header.scrolled {
        padding: var(--space-2) var(--space-4);
    }
}

/* Cards */
@media (max-width: 576px) {
    .card-front h3,
    .card-back h3 {
        font-size: 1.25rem;
    }
    
    .card-front p,
    .card-back p {
        font-size: 0.875rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
}

/* Booking Preview */
@media (max-width: 768px) {
    .booking-preview {
        min-height: 50vh;
    }
}

/* Horizontal Scroll Adjustments */
@media (max-width: 576px) {
    .horizontal-scroll {
        overflow-x: auto;
        padding-bottom: var(--space-5);
    }
    
    .scroll-container {
        padding-bottom: 0;
    }
    
    .scroll-navigation {
        display: none;
    }
}

/* Typography Responsiveness */
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.9375rem;
    }
    
    .text-link {
        font-size: 0.8125rem;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 130vh;
    }
    
    .mobile-menu ul li {
        margin: var(--space-2) 0;
    }
    
    .mobile-menu ul li a {
        font-size: 1.25rem;
    }
}

/* High-Resolution Screens */
@media (min-width: 1400px) {
    html {
        font-size: 18px;
    }
    
    .container {
        max-width: 1320px;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}