/* --- Ajout du logo Facebook en bas de page --- */
.facebook-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}
.facebook-footer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s;
}
.facebook-footer img:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* --- Suppression des boutons derrière les images --- */
.bouton-derriere-image, .bouton-derriere-image2 {
    display: none !important;
}

/* --- Bouton latéral Commander --- */
.commander-btn {
    position: fixed;
    top: 40%;
    right: 0;
    background: #e63946;
    color: #fff;
    padding: 16px 24px 16px 12px;
    border-radius: 24px 0 0 24px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1200;
    transition: background 0.2s;
}
.commander-btn:hover {
    background: #a82834;
}
.commander-num {
    display: none;
    position: fixed;
    top: 40%;
    right: 120px;
    background: #fff;
    color: #e63946;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    z-index: 1201;
    animation: fadeIn 0.3s;
}
.commander-btn:hover + .commander-num,
.commander-num:hover {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: none !important;
    color: #222;
}

header {
    background: #d32f2f;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    background-size: cover;
    background-position: center;
}
.header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(211,47,47,0.7);
    z-index: 1;
    border-radius: 0 0 12px 12px;
}
header > * {
    position: relative;
    z-index: 2;
}
.logo-title {
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
    color: #fff;
}
.subtitle {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fffbe7;
}
nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}
nav li {
    margin: 0 1.5rem;
    position: relative;
}
nav a {
    text-decoration: none;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
    cursor: pointer;
}
nav a:hover {
    color: #fbb034;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    top: 2.2rem;
    left: 0;
}
.dropdown-content a {
    color: #d32f2f;
    padding: 0.7rem 1.2rem;
    display: block;
    text-align: left;
    font-size: 1rem;
    border-bottom: 1px solid #fbb03422;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background: #fbb03422;
}
main {
    max-width: 1000px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 2rem;
}
section {
    margin-bottom: 2.5rem;
}
#presentation {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 220px;
    color: #fff;
    margin-bottom: 2rem;
}
.section-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(211,47,47,0.5);
    z-index: 1;
    border-radius: 12px;
}
#presentation > * {
    position: relative;
    z-index: 2;
}
h2 {
    color: #d32f2f;
    margin-top: 0;
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    font-size: 2rem;
}
.menu-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.menu-col {
    flex: 1 1 300px;
}
.menu-list {
    padding-left: 0;
    list-style: none;
}
.menu-list li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #fbb034;
    padding-bottom: 0.2rem;
}
.menu-list span {
    color: #d32f2f;
    font-weight: bold;
    margin-left: 1rem;
}
#contact a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}
#contact a:hover {
    text-decoration: underline;
}
.map-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
footer {
    text-align: center;
    padding: 1rem;
    background: #d32f2f;
    color: #fff;
    border-radius: 0 0 12px 12px;
    margin: 2rem auto 0 auto;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    font-size: 1.2rem;
}
.hero-section {
    background-image: url('fa369bca-4697-41dc-a63a-a182cbee0a9a.JPG');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(211,47,47,0.55);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: #fbb034;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #d32f2f;
    color: #fffbe7;
}
.menu-accordion {
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
}
.accordion {
    background: #fff8f3;
    color: #d32f2f;
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    transition: background 0.2s;
    border-bottom: 1px solid #fbb03444;
    border-radius: 8px 8px 0 0;
    margin-top: 1rem;
}
.accordion.active, .accordion:hover {
    background: #fbb03422;
}
.panel {
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1rem;
}
.panel ul {
    margin: 0;
    padding: 1rem 2rem;
}
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 1rem 0;
}
.contact-card {
    background: #fff8f3;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    min-width: 220px;
    color: #d32f2f;
}
.contact-icon {
    font-size: 1.5rem;
}
.arrow {
    font-size: 0.9em;
    margin-left: 0.3em;
}
.nav-item {
    position: relative;
}
.dropdown-toggle {
    background: none;
    border: none;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
}
.dropdown-toggle[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}
.promo-hero {
    position: relative;
    width: 100vw;
    min-height: 60vh;
    background: url('crepes-au-poulet.jpg') center center/cover no-repeat !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
        min-height: 400px !important;
        height: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        border: none !important;
        position: relative;
    }

    .promo-hero::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
        pointer-events: none;
        z-index: 2;
    }
}
.promo-overlay {
    display: none;
}
.promo-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.promo-title {
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.promo-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.promo-btn {
    background: #fbb034;
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.promo-btn:hover {
    background: #d32f2f;
    color: #fffbe7;
}
.promo-gallery {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 3;
}
.promo-gallery img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    border: 3px solid #fff8f3;
    transition: transform 0.2s;
    background: #fff;
}
.promo-gallery img:hover {
    transform: scale(1.07) rotate(-2deg);
}
.promo-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.promo-btn.secondary {
    background: #fffbe7;
    color: #d32f2f;
    border: 2px solid #fbb034;
}
.promo-btn.secondary:hover {
    background: #fbb034;
    color: #fff;
}
.main-header {
    width: 100vw;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 20;
}
.main-navbar ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 1.1rem 0;
}
.main-navbar a {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.main-navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fbb034;
    transition: width 0.2s;
    margin: 0 auto;
}
.main-navbar a:hover::after {
    width: 100%;
}
.main-navbar a:hover {
    color: #fbb034;
}
.menu-intro {
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
}
.menu-intro-title {
    font-size: 1.5rem;
    color: #d32f2f;
    font-family: 'Pacifico', 'Brush Script MT', cursive, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .menu-columns {
        flex-direction: column;
    }
    .promo-title { font-size: 2.1rem; }
    .promo-gallery img { width: 80px; height: 60px; }
    .main-navbar ul { gap: 1.2rem; }
}
@media (max-width: 600px) {
    main {
        padding: 1rem;
    }
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin: 0.5rem 0;
    }
    .menu-columns {
        flex-direction: column;
    }
    #presentation {
        min-height: 120px;
    }
    .promo-hero { min-height: 40vh; }
    .promo-title { font-size: 1.3rem; }
    .promo-gallery img { width: 60px; height: 40px; }
    .main-navbar ul { flex-direction: column; gap: 0.5rem; }
}
