/* Responsive Styles */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content, 
    .gaming-content, 
    .accommodations-content {
        gap: 2rem;
    }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .left-menu li, .right-menu li {
        margin: 0 0.7rem;
    }
    
    .logo {
        padding: 0 1rem;
    }
    
    .about-content,
    .gaming-content,
    .accommodations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image,
    .accommodations-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hotel-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .left-menu, .right-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 1.5rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .hotel-slider,
    .dining-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gaming-stats {
        grid-template-columns: 1fr;
    }
    
    .room-types {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .footer-bottom-links li:first-child {
        margin-left: 0;
    }
}

/* Mobile Large (576px and below) */
@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile Small (400px and below) */
@media (max-width: 400px) {
    .section-header .subtitle {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-rating {
        margin-top: 0.5rem;
    }
    
    #back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}