/* 
 * responsive.css
 * Purpose: Media queries for responsive design across mobile, tablet, and desktop viewports. 
 */

/* Target specific mobile breakpoints */
@media (min-width: 390px) {
    /* Adjustments for 390px+ */
}

@media (min-width: 412px) {
    /* Adjustments for 412px+ */
}

@media (min-width: 430px) {
    /* Adjustments for 430px+ */
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
    
    .hero-actions .btn {
        width: auto;
    }
    
    /* Signature Dishes Tablet Adjustments */
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery Tablet Adjustments */
    .gallery-image-placeholder {
        aspect-ratio: 1/1;
    }
}

@media (min-width: 1024px) {
    /* Header Desktop Adjustments */
    .mobile-menu-toggle {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header.scrolled .logo-img {
        height: 32px;
    }
    
    .mobile-drawer-logo {
        display: none;
    }
    
    .main-nav {
        position: static;
        flex-direction: row;
        height: auto;
        background-color: transparent;
        padding: 0;
        width: auto;
        justify-content: flex-end;
    }
    
    .nav-list {
        flex-direction: row;
        margin-bottom: 0;
        margin-right: var(--space-xl);
        gap: var(--space-lg);
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Hero Desktop Adjustments */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        background-position: center 30%;
    }
    
    .hero-container {
        max-width: 720px;
    }
    
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
    
    .hero-actions .btn {
        width: auto;
    }
    
    /* Trust Bar Desktop Adjustments */
    .trust-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-md);
    }
    
    .trust-item {
        padding: 0;
    }
    
    .trust-highlight {
        grid-column: auto;
        justify-content: flex-start;
        background-color: transparent;
        border: none;
        padding: 0;
    }
    
    /* About Section Desktop Adjustments */
    .about-container {
        flex-direction: row;
        align-items: center;
        gap: var(--space-3xl);
    }
    
    .about-image-wrapper {
        flex: 1;
        max-width: 45%;
    }
    
    .about-image-placeholder {
        aspect-ratio: 4/5;
    }
    
    .about-content {
        flex: 1;
        max-width: 55%;
    }
    
    .highlight-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Signature Dishes Desktop Adjustments */
    .dishes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Gallery Desktop Adjustments */
    .gallery-image-placeholder {
        aspect-ratio: 3/4;
    }
    
    /* Features Desktop Adjustments */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    /* Visit Us Desktop Adjustments */
    .visit-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-3xl);
    }

    .visit-info {
        flex: 1;
        max-width: 45%;
    }

    .visit-buttons--row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .visit-buttons--row .btn {
        flex: 1;
        width: auto;
        justify-content: center;
        min-width: 150px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .visit-map-wrapper {
        flex: 1;
        max-width: 55%;
    }

    .map-frame-container {
        padding-bottom: 65%;
    }
}

/* Footer Tablet */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Footer Desktop */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1fr;
        gap: var(--space-3xl);
    }
}
