/* --- HERO --- */
.bar-hero { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 60vh; 
    background: url('../images/banniere.png') center/cover no-repeat; 
    z-index: -1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    pointer-events: none; 
}

.bar-hero:after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.3); 
    z-index: 1; 
}

.bar-hero-content { 
    position: relative; 
    text-align: center; 
    color: white; 
    z-index: 2; 
    max-width: 800px; 
    padding: 0 2rem; 
}

.bar-hero-content h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
    font-family: 'Playfair Display', serif; 
}

.bar-hero-content p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
}

.bar-page { 
    margin-top: 61vh !important;
    background-color: white; 
    max-width: var(--container-width); 
    margin: 0 auto; 
    border: 4px solid var(--purple-primary);
    border-radius: 10px; 
    box-sizing: border-box; 
    padding: 4rem 2rem;
}


/* --- DESCRIPTION --- */
.bar-description { 
    padding: 5rem 2rem; 
    text-align: center; 
}

.bar-description-container { 
    max-width: 900px; 
    margin: 0 auto; 
}

.bar-description h2 { 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 1.5rem; 
    font-size: 2.5rem; 
}

.bar-description p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
}

.bar-features { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-top: 3rem; 
}

.feature { 
    padding: 1rem 2rem; 
    margin: 1rem; 
    border-radius: 5px; 
    text-align: center; 
    min-width: 200px; 
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.15);
    background-color: #fafafa;
}

.feature i { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    color: var(--purple-primary); 
}

.feature h3 { 
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
}

/* --- MENU --- */
.bar-menu { 
    padding: 5rem 2rem; 
    background-color: white; 
}

.menu-container { 
    max-width: var(--container-width); 
    margin: 0 auto; 
}

.menu-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

.menu-header h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: var(--dark-color); 
    margin-bottom: 1.5rem; 
}

.menu-header p { 
    font-size: 1.1rem; 
    color: #666; 
    max-width: 800px; 
    margin: 0 auto; 
    line-height: 1.6; 
    font-style: italic; 
}

.menu-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 3rem; 
}

.menu-category { 
    background-color: #fafafa; 
    border-radius: 12px; 
    padding: 2rem; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.menu-category h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    color: var(--primary-color); 
    margin-bottom: 2rem; 
    text-align: center; 
    border-bottom: 2px solid var(--primary-color); 
    padding-bottom: 1rem; 
}

.menu-category i { 
    color: var(--purple-primary);
}

/* --- GALERIE --- */
.bar-gallery { 
    padding: 4rem 2rem; 
    background-color: var(--light-color); 
}

.gallery-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); 
    gap: 1.5rem; 
    margin-top: 2rem; 
}

.gallery-item { 
    height: 300px; 
    overflow: hidden; 
    position: relative; 
    border-radius: 8px; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease; 
}

.gallery-item:hover { 
    transform: translateY(-5px); 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.gallery-item:hover img { 
    transform: scale(1.05); 
}

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

/* Responsive */
@media (max-width: 900px) { 
    .main-nav ul li a { 
        padding: 0 0.5rem; 
        font-size: 0.8rem; 
    } 
}

@media (max-width: 768px) { 
    .menu-content { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    } 
    
    .menu-category { 
        padding: 1.5rem; 
    } 
    
    .menu-item { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0.3rem; 
    } 
    
    .item-name { 
        margin-right: 0; 
    } 
    
    .menu-header h2 { 
        font-size: 2rem; 
    } 
}

@media (max-width: 480px) { 
    .bar-menu { 
        padding: 3rem 1rem; 
    } 
    
    .menu-category h3 { 
        font-size: 1.5rem; 
    } 
    
    .subcategory h4 { 
        font-size: 1.1rem; 
    } 
}