/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .header-container {
        grid-template-columns: auto auto auto;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .main-nav ul {
        gap: 1.5rem;
    }

    .auth-button {
        padding: 0.5rem 1rem;
    }

    .hero-content {
        width: 70%;
        padding: 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .site-header {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .header-container {
        grid-template-columns: auto auto;
        padding: 0.75rem 1rem;
    }
    
    /* Header Navigation */
    .nav-toggle {
        display: flex;
        justify-self: end;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        justify-self: start;
        padding: 2rem 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .auth-buttons {
        display: none;
    }

    /* Mobile Navigation Menu */
    .main-nav.active {
        left: 0;
    }

    .main-nav.active .auth-buttons {
        display: none; /* Hide auth buttons in mobile menu */
    }

    /* Remove cart and book now buttons from mobile menu */
    .main-nav .auth-button.cart,
    .main-nav .auth-button.book-now {
        display: none;
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .main-nav.active .auth-button {
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        width: 100%;
        padding: 3rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        text-align: center;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
    }
} 