/* Layout CSS - Grids, Sections, Responsive Structure */

/* Header & Nav */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#main-nav ul {
    display: flex;
    gap: 2rem;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Offset fixed header */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('../assets/hero_bg.png');
    /* Fallback/Placeholder URL until we generate one */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

#hero p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}



/* Sections General */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.reviews-disclaimer p {
    max-width: 100%;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 400px;
}

.about-img-content {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    background-color: #000;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 0;
    /* Grid has top margin */
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    /* Reduced from 3rem since we have headers now */
}

.menu-footer {
    margin-top: 3rem;
    text-align: center;
}

/* Order Online Section */
#order-online {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Location Layout */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-map {
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Responsive */
@media (max-width: 900px) {

    .about-grid,
    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        /* Image on top on mobile */
        height: 300px;
    }

    .location-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    #main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--bg-card);
        padding: 5rem 2rem;
        transform: translateX(100%);
        transition: transform var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    #main-nav.active {
        transform: translateX(0);
    }

    #main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        /* Shown in components css, but layout logic here */
        z-index: 1001;
    }

    h1 {
        font-size: 3rem;
    }
}