/* Header Styles avec logo image */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo h1 span {
    color: #c89b3c;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #c89b3c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-close {
    display: none;
}

/* Ajustement pour le hero section avec header fixe */
.hero {
    padding-top: 80px;
}

/* Styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: #c89b3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b0822c;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #c89b3c;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/background.jpg') no-repeat center center/cover;
    background-color: #1a1a1a;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/about-bg.jpg') no-repeat center center/cover;
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('/assets/images/services-bg.jpg') no-repeat center center/cover;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c89b3c;
}

.service-content p {
    color: #333;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('/assets/images/menu-bg.jpg') no-repeat center center/cover;
    color: white;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
}

.tab-btn {
    background: rgba(200, 155, 60, 0.2);
    border: 2px solid transparent;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #ddd;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(200, 155, 60, 0.3);
    color: #fff;
    transform: translateY(-2px);
    border-color: #c89b3c;
}

.tab-btn.active {
    background: #c89b3c;
    color: #000;
    font-weight: 600;
    border-color: #c89b3c;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}




/* Dans style.css, trouvez et remplacez les règles pour .menu-item */

.menu-item {
    /* On retire les display: none !important; */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    /* On gère le "retrait" de l'élément différemment */
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0; /* Assure une transition douce */
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}

.menu-item.show {
    /* On retire le display: block !important; */
    opacity: 1;
    transform: translateY(0);
    /* On redonne sa taille à l'élément */
    max-height: 500px; /* Une valeur assez grande pour contenir l'élément */
    overflow: visible;
    margin-bottom: 30px; /* La valeur de 'gap' dans votre .menu-grid */
    padding-top: 25px; /* Les valeurs originales du padding */
    padding-bottom: 25px;
    border-width: 1px;
}

/* Assurer que les éléments sont visibles quand ils ont la classe show */
.menu-item[style*="display: block"] {
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.menu-item:hover {
    box-shadow: 0 12px 35px rgba(200, 155, 60, 0.25);
    transform: translateY(-5px);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title h3 {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #c89b3c;
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: #c89b3c;
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-item-content p {
    color: #333;
    line-height: 1.6;
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/reservation-bg.jpg') no-repeat center center/cover;
    color: white;
}

.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/contact-bg.jpg') no-repeat center center/cover;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
}

.contact-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(200, 155, 60, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(200, 155, 60, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.8rem;
    color: #c89b3c;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.contact-info-content h4 {
    color: #c89b3c;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-info-content p {
    color: #ddd;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    color: #c89b3c;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #c89b3c;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: #c89b3c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #b0822c;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #c89b3c;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #c89b3c;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-hours h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-hours h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c89b3c;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #c89b3c;
}

.footer-hours p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-hours p span {
    color: #c89b3c;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright {
    margin-bottom: 10px;
}

.copyright p {
    margin-bottom: 5px;
    color: #ddd;
}

.credit-link {
    color: #c89b3c;
    text-decoration: none;
}

.credit-link:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-legal a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c89b3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #222;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('/assets/images/background-mobile.jpg') no-repeat center center/cover;
    }
}

/* Correction spécifique pour le menu */
.menu-item {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-item.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

/* Animation de transition pour le changement de catégorie */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    min-height: 500px; /* Évite le saut de layout */
}

/* Styles pour les onglets actifs */
.tab-btn.active {
    background: #c89b3c !important;
    color: #000 !important;
    font-weight: 600;
    border-color: #c89b3c;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
}

/* Assurer la visibilité du contenu */
.menu-item-content {
    padding: 20px;
    background: white;
}

.menu-item-title h3 {
    color: #c89b3c;
    font-size: 1.2rem;
}

.menu-item-content p {
    color: #666;
}

/* Styles pour la Section Événements */
.events-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Un fond légèrement différent pour la démarquer */
}

.events-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.events-image {
    flex: 1;
}

.events-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.events-text {
    flex: 1;
}

.events-text h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.events-text p {
    margin-bottom: 20px;
}

.events-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.events-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.events-text .fa-check-circle {
    color: #8B4513;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .events-content {
        flex-direction: column;
    }
}