/* Responsive Styles */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .menu ul li {
        margin-left: 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-images {
        width: 100%;
    }
    
    .feature {
        min-width: 200px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .booking-form, .booking-summary {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .header-inner {
        position: relative;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--gray-900);
        padding: 20px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 999;
    }
    
    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu ul {
        flex-direction: column;
    }
    
    .menu ul li {
        margin: 0 0 15px 0;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero-content {
        margin-top: 80px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-images {
        height: 30%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 100%;
    }
    
    .package-card, .room-card {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-newsletter {
        width: 100%;
    }
    
    .booking-hero {
        margin-top: 60px;
        height: 30vh;
    }
    
    .booking-hero-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .summary-card, .need-help {
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: calc(100vh - 60px);
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .footer-newsletter button {
        border-radius: var(--border-radius);
        width: 100%;
        padding: 12px;
    }
    
    .booking-hero {
        margin-top: 60px;
        height: 25vh;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .form-header h3, .summary-card h3 {
        font-size: 1.2rem;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .package-details h3, .room-details h3 {
        font-size: 1.3rem;
    }
    
    .package-price .price, .room-price .price {
        font-size: 1.5rem;
    }
}