/* Responsive Styles for Mobile and Tablets */

/* Base Hamburger Icon */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: #000000; /* Changed to pure black */
    cursor: pointer;
    z-index: 2000;
}

/* Mobile View (max-width: 900px to cover tablets too) */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    /* Header Adjustments */
    header {
        padding: 15px 20px;
        background: white; /* Make mobile header white */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .brand-name {
        font-size: 1.1rem;
        color: #000000; /* Change brand name to pure black */
    }
    .brand-name span {
        color: #000000 !important; /* Change subtitle to pure black */
    }
    .small-logo {
        height: 72px !important; /* Increased from 63px (by 15%) */
    }

    /* Hide Navigation Links and Book Now Button by Default */
    nav, .book-now-btn {
        display: none;
    }

    /* Mobile Menu Overlay overlay */
    nav.mobile-active {
    display: flex !important;
    flex-direction: column !important;

        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98); /* White background instead of dark green */
        backdrop-filter: blur(10px);
        z-index: 1500;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
    }

    nav.mobile-active a {
        font-size: 1.5rem;
        color: #000000 !important; /* Change link colors to pure black */
        font-weight: 600;
    }

    /* Hero Section Adjustments */
    .main-logo {
        height: 242px !important; /* Increased from 210px (by 15%) */
        margin-top: 60px; /* Push down to avoid header overlap */
    }
    .thai-welcome {
        font-size: 2rem;
    }
    .main-title {
        font-size: 3.5rem;
    }
    .sub-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .description {
        font-size: 1rem;
        padding-top: 15px;
        margin-bottom: 30px;
    }
    .hero > div {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero > div a {
        width: 100%;
        box-sizing: border-box;
    }

    /* Other Grids and Sections */
    .reviews-grid, .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
