/* Variables globales */
:root {
    --primary-color: #985717; /* Brun doré */
    --secondary-color: #FFDB58; /* Jaune moutarde */
    --accent-color: #50C878; /* Vert émeraude */
    --text-color: #985717; /* Brun doré pour le texte */
    --light-bg: #FFDB58; /* Jaune moutarde pour fonds */
    --dark-bg: #50C878; /* Vert émeraude pour fonds sombres */
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 219, 88, 0.95); /* Jaune moutarde avec transparence */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(152, 87, 23, 0.2); /* Ombre en brun doré */
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

/* Section Hero */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--light-bg);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--light-bg);
}

/* Sections communes */
section {
    padding: 3rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: #FFFFFF;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

section:nth-child(even) h2 {
    color: #FFFFFF;
}

/* Section Expérience */
#experience {
    padding: 3rem 5%;
    background-color: #FFFFFF;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
}

.experience-description {
    margin-bottom: 3rem;
}

.experience-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.experience-events {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-events h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.experience-events p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.experience-image {
    flex: 1;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .experience-content {
        flex-direction: column;
        gap: 2rem;
    }

    .experience-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .experience-description p,
    .experience-events p {
        font-size: 1rem;
    }

    .experience-events h3 {
        font-size: 1.3rem;
    }
}

/* Section Prestations */
#prestations {
    padding: 3rem 5%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/fond1.jpg') center/cover no-repeat;
}

.prestations-content {
    max-width: 1400px;
    margin: 0 auto;
}

.prestations-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.prestations-intro h2 {
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.prestations-description {
    color: #FFFFFF;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.prestation-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
}

.prestation-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.prestation-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.prestation-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .prestations-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .prestation-card {
        padding: 2rem;
    }

    .prestation-card h3 {
        font-size: 1.5rem;
    }

    .prestation-card p {
        font-size: 1rem;
    }
}

/* Section Gallerie */
#gallerie {
    padding: 3rem 5%;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

#gallerie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

#gallerie::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.gallery-intro {
    margin: 0 auto 2rem;
    text-align: center;
}

.gallery-intro h2 {
    margin-bottom: 0.05rem;
}

.gallery-intro p {
    font-size: 1.3rem;
    line-height: 2;
    color: #333;
    opacity: 0.9;
    font-style: italic;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 1rem 0;
}

.gallery-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    flex: 0 0 25%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.gallery-slide:hover {
    transform: translateY(-10px);
}

.gallery-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.gallery-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-color);
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

@media screen and (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 33.333%;
    }
    
    .gallery-slide img {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-intro h2 {
        font-size: 2.5rem;
    }
    
    .gallery-intro p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .gallery-slide {
        flex: 0 0 50%;
    }
    
    .gallery-slide img {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-slide {
        flex: 0 0 100%;
    }
    
    .gallery-slide img {
        height: 200px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Section Menus */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(152, 87, 23, 0.2);
    border-left: 4px solid var(--accent-color);
}

/* Section Contact */
#contact {
    background: #fff;
    padding: 3rem 5%;
}

.contact-flex {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-form-immersive {
    flex: 1;
    background: #FFDB58;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form h3 {
    color: #985717;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(80,200,120,0.10);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: black;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, transform 0.2s;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.03);
}

.contact-map {
    flex: 1;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 18px;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

@media screen and (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-form-immersive, .contact-map {
        padding: 1.5rem 0.5rem;
    }
}

/* Footer */
footer {
    background: white;
    color: var(--light-bg);
    padding: 3rem 10% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light-bg);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3rem 5%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: var(--transition);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--light-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

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

/* Ajout d'effets de survol */
.nav-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Ajustements pour la lisibilité */
.hero h1, .hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Effets de survol */
.cta-button {
    background: var(--primary-color);
    color: var(--light-bg);
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--light-bg);
}

/* Icônes */
.experience-card i,
.contact-info i {
    color: var(--primary-color);
}

/* Points de liste */
.prestation-card ul li::before {
    color: var(--primary-color);
}

/* Section Accueil */
#accueil {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/fond_landing1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Section Expérience */
#experience {
    background-color: #FFFFFF;
}

/* Section Menus */
#menus {
    padding: 3rem 5%;
    position: relative;
    background: none;
}
#menus::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: url('../images/fond2.jpg') center/cover no-repeat;
    filter: blur(6px);
}
#menus::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,0.72);
}
#menus > * {
    position: relative;
    z-index: 2;
}

/* Carrousel des menus */
.menu-carousel-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.menu-title-dynamic {
    margin: 0 0 1.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-height: 2.5rem;
    transition: color 0.3s;
    text-align: center;
}
.menu-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}
.menu-slide-wrapper {
    width: 400px;
    height: 550px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.menu-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, transform 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    gap: 0;
    opacity: 0;
    z-index: 1;
}
.menu-slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
    animation: menuFadeIn 0.5s;
}
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.menu-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: pointer;
}
.menu-slide img:hover {
    transform: scale(1.04);
}
.menu-prev, .menu-next {
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    z-index: 3;
}
.menu-prev:hover, .menu-next:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
.menu-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}
.menu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.menu-dot.active {
    background: var(--primary-color);
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}
@media screen and (max-width: 900px) {
    .menu-slide-wrapper {
        width: 90vw;
        max-width: 350px;
        height: 200px;
    }
    .menu-slide img {
        height: 90%;
    }
}
@media screen and (max-width: 600px) {
    .menu-slide-wrapper {
        max-width: 95vw;
        height: 120px;
    }
}
/* Popup plein écran pour les cartes */
.menu-popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s;
    pointer-events: auto;
}
.menu-popup.active {
    display: flex;
}
.menu-popup-img {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: none;
    display: block;
}
.menu-popup-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
}
.menu-popup-close:hover {
    color: var(--secondary-color);
}

/* Suppression du CSS du carrousel des menus */
#prestations, #experience, #gallerie, #menus {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.menu-cards-flex {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2.5rem 0 1.5rem 0;
    flex-wrap: wrap;
}
.menu-card-block {
    background: none;
    border-radius: 18px;
    box-shadow: 0 0 32px 0 rgba(255,255,255,0.45), 0 8px 32px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    max-width: 340px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.menu-card-block:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 48px 0 rgba(255,255,255,0.65), 0 16px 48px rgba(0,0,0,0.18);
}
.menu-card-block h3 {
    color: #fff;
    background: #985717;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(80,200,120,0.08);
}
.menu-card-block img {
    width: 100%;
    max-width: 260px;
    height: 340px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(80,200,120,0.10);
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card-block img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(80,200,120,0.18);
}
@media (max-width: 1100px) {
    .menu-cards-flex {
        gap: 1.2rem;
    }
    .menu-card-block {
        max-width: 280px;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .menu-card-block img {
        max-width: 180px;
        height: 220px;
    }
}
@media (max-width: 800px) {
    .menu-cards-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .menu-card-block {
        max-width: 95vw;
    }
    .menu-card-block img {
        max-width: 90vw;
        height: 180px;
    }
} 