/* ================================
   Restaurant La Camargue - Custom CSS
   Design moderne avec tons beige
   ================================ */

:root {
    --primary-beige: #D4AF77;
    --light-beige: #F5E6D3;
    --dark-beige: #A68B5B;
    --cream: #FAF8F3;
    --text-dark: #3E3E3E;
    --text-light: #6B6B6B;
    --accent-brown: #8B5A3C;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
}

a {
    color: var(--primary-beige);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-beige);
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

/* ================================
   HEADER
   ================================ */

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    background: var(--light-beige);
    padding: 20px 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.navbar {
    padding: 15px 0;
    background: var(--white);
}

.navbar .container {
    justify-content: center;
}

.logo-img {
    max-height: 100px;
    width: auto;
}

.navbar-nav {
    text-align: center;
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar-nav .nav-item {
    list-style: none;
    position: relative;
}

/* Ajouter un point séparateur entre les onglets */
.navbar-nav .nav-item:not(:last-child)::after {
    content: '•';
    color: var(--text-dark);
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 1;
}

.navbar-nav .nav-item::before {
    display: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    margin: 0 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-beige);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-beige);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 2px solid var(--primary-beige);
    padding: 8px 12px;
}

.navbar-toggler-icon i {
    color: var(--primary-beige);
    font-size: 24px;
}

/* Cacher le bouton hamburger sur desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* Centrer le bouton hamburger sur mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        margin: 0 auto;
        display: block;
    }
    
    .navbar .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    /* Masquer les points séparateurs sur mobile */
    .navbar-nav .nav-item:not(:last-child)::after {
        display: none;
    }
}

/* ================================
   HERO SLIDER
   ================================ */

.hero-slider {
    position: relative;
    padding: 10px 0 !important;
}

.site-slider {
    position: relative;
}

.site-slider img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-caption {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.slider-caption h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-caption .lead {
    font-size: 24px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.bx-thumbnail-wrapper {
    background: var(--dark-beige);
    padding: 15px 0;
}

#bx-pager {
    text-align: center;
}

#bx-pager a {
    display: inline-block;
    margin: 0 5px;
}

#bx-pager a img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

#bx-pager a:hover img,
#bx-pager a.active img {
    border-color: var(--primary-beige);
    opacity: 1;
}

/* ================================
   SECTIONS GÉNÉRALES
   ================================ */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-beige);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ================================
   HISTOIRE SECTION
   ================================ */

.histoire-section {
    background: var(--white);
}

.histoire-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.histoire-content {
    padding-left: 40px;
}

.histoire-text {
    margin-top: 30px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.special-text {
    color: var(--dark-beige);
    font-weight: 600;
}

.welcome-text {
    font-size: 28px;
    color: var(--primary-beige);
    font-weight: 700;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

/* ================================
   SPÉCIALITÉS SECTION
   ================================ */

.specialites-section {
    background: var(--light-beige);
}

.specialite-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.specialite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.specialite-icon {
    font-size: 48px;
    color: var(--primary-beige);
    margin-bottom: 20px;
}

.specialite-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.specialite-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* ================================
   CADRE SECTION
   ================================ */

.cadre-section {
    background: var(--cream);
}

.cadre-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cadre-content {
    padding-right: 40px;
}

.cadre-content .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.avantages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.avantages-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.avantages-list i {
    color: var(--primary-beige);
    margin-right: 15px;
    font-size: 18px;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-beige);
    color: var(--white);
    border: 2px solid var(--primary-beige);
}

.btn-primary:hover {
    background: var(--dark-beige);
    border-color: var(--dark-beige);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-light {
    background: var(--white);
    color: var(--primary-beige);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-beige), var(--dark-beige));
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section .lead {
    color: var(--white);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   PAGE HEADER
   ================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-beige), var(--dark-beige));
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header .lead {
    color: var(--white);
    font-size: 20px;
}

/* ================================
   RESTAURANT PAGE
   ================================ */

.restaurant-content {
    background: var(--cream);
}

.restaurant-intro {
    text-align: center;
    margin-bottom: 60px;
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-beige);
}

.info-box h3 i {
    margin-right: 15px;
}

.specialites-list .specialite-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-beige);
}

.specialites-list .specialite-item:last-child {
    border-bottom: none;
}

.specialites-list h4 {
    font-size: 20px;
    color: var(--dark-beige);
    margin-bottom: 5px;
}

.specialites-list p {
    color: var(--text-light);
    margin: 0;
}

.horaires-table table {
    margin: 0;
}

.horaires-table td {
    padding: 12px 20px;
    border: none;
    border-bottom: 1px solid var(--light-beige);
}

.horaires-table tr.ferme td {
    background: #f8d7da;
    color: #721c24;
}

.horaires-table tr.highlight td {
    background: var(--light-beige);
    font-weight: 600;
}

.reservation-note {
    background: var(--light-beige);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.reservation-note i {
    color: var(--primary-beige);
    margin-right: 10px;
}

.evenements-list {
    list-style: none;
    padding: 0;
}

.evenements-list li {
    padding: 10px 0;
    font-size: 16px;
}

.evenements-list i {
    color: var(--primary-beige);
    margin-right: 15px;
    font-size: 18px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-beige);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-light);
}

/* ================================
   MENUS PAGE
   ================================ */

.menus-content {
    background: var(--cream);
}

.menu-gallery {
    margin-top: 40px;
}

.menu-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.menu-image {
    position: relative;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 119, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.menu-link {
    color: var(--white);
    font-size: 48px;
}

.menu-info {
    padding: 20px;
    text-align: center;
}

.menu-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-qr-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.specialites-highlight {
    background: var(--light-beige);
}

.specialite-highlight-card {
    text-align: center;
    padding: 30px 20px;
}

.specialite-highlight-card i {
    font-size: 36px;
    color: var(--primary-beige);
    margin-bottom: 15px;
}

.specialite-highlight-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.specialite-highlight-card p {
    color: var(--text-light);
}

/* ================================
   GALERIE PAGE
   ================================ */

.galerie-content {
    background: var(--cream);
}

.photo-gallery {
    margin-top: 40px;
}

.gallery-item {
    margin-bottom: 30px;
}

.photo-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.photo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-caption h4 {
    color: var(--white);
    font-size: 20px;
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-content {
    background: var(--cream);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 48px;
    color: var(--primary-beige);
    margin-bottom: 20px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-beige);
}

.contact-link {
    color: var(--primary-beige);
    font-weight: 600;
    font-size: 18px;
}

.contact-link:hover {
    color: var(--dark-beige);
}

.reservation-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.reservation-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-beige);
}

.reservation-box h3 i {
    margin-right: 15px;
}

.horaires-complete {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.horaires-complete h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-beige);
}

.horaires-table tbody tr {
    transition: background 0.3s ease;
}

.horaires-table tbody tr:hover {
    background: var(--light-beige);
}

.horaires-table .badge {
    padding: 5px 10px;
    font-size: 14px;
}

.social-links-large {
    margin-top: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b5998;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #2d4373;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn i {
    font-size: 24px;
}

.liens-utiles {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.liens-utiles h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-beige);
}

.lien-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-beige);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    min-height: 150px;
}

.lien-box:hover {
    background: var(--primary-beige);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lien-box i {
    font-size: 36px;
    color: var(--dark-beige);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.lien-box span {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.lien-box:hover i,
.lien-box:hover span {
    color: var(--white);
}

/* ================================
   FOOTER
   ================================ */

.main-footer {
    background: linear-gradient(135deg, var(--dark-beige), var(--accent-brown));
    color: var(--white);
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-beige);
    transform: translateY(-3px);
}

.horaires-list,
.contact-list {
    list-style: none;
    padding: 0;
}

.horaires-list li,
.contact-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--light-beige);
    min-width: 20px;
}

.contact-list a {
    color: var(--white);
}

.contact-list a:hover {
    color: var(--light-beige);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--light-beige);
}

.footer-bottom a:hover {
    color: var(--white);
}

.separator {
    margin: 0 10px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 20px;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .slider-caption h1 {
        font-size: 32px;
    }
    
    .slider-caption .lead {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .histoire-content,
    .cadre-content {
        padding: 0;
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .site-slider img {
        height: 400px;
    }
    
    .slider-caption h1 {
        font-size: 24px;
    }
    
    .slider-caption .lead {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .annonce-title {
        font-size: 24px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .welcome-text {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    #bx-pager a img {
        width: 60px;
        height: 45px;
    }
    
    /* Réduire la taille du bouton Réserver sur mobile */
    .btn-lg {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .logo-img {
        max-height: 70px;
    }
    
    .logo-section {
        padding: 15px 0;
    }
    
    .info-box {
        padding: 25px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-beige);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-beige);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.back-to-top i {
    font-size: 20px;
}

/* ================================
   LIGHTBOX MENUS
   ================================ */

.menu-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-lightbox.active {
    display: block;
    opacity: 1;
}

.menu-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.menu-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-lightbox-image-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.menu-lightbox-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.menu-lightbox-counter {
    color: var(--light-beige);
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

.menu-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lightbox-close:hover {
    background: var(--primary-beige);
    border-color: var(--primary-beige);
    transform: rotate(90deg);
}

.menu-lightbox-prev,
.menu-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lightbox-prev {
    left: 30px;
}

.menu-lightbox-next {
    right: 30px;
}

.menu-lightbox-prev:hover,
.menu-lightbox-next:hover {
    background: var(--primary-beige);
    border-color: var(--primary-beige);
    transform: translateY(-50%) scale(1.1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive pour la lightbox */
@media (max-width: 768px) {
    .menu-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .menu-lightbox-prev,
    .menu-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .menu-lightbox-prev {
        left: 10px;
    }
    
    .menu-lightbox-next {
        right: 10px;
    }
    
    .menu-lightbox-title {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .menu-lightbox-counter {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .menu-lightbox-image-container img {
        max-height: 75vh;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.slideInUp {
    animation-name: slideInUp;
}

.fadeInUp {
    animation-name: fadeInUp;
}

