/* ==========================================================================
   STRUCTURE GÉNÉRALE
   ========================================================================== */
#conteneur {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   BANNIÈRE AVEC IMAGE DE FOND (banniere3.jpg)
   ========================================================================== */
#banniere {
    background-image: url('../images/banniere3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 180px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
}

#menuUtil { text-align: right; }
#menuUtil a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8); 
}

#logo {
    width: 320px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 10px;
}

#logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   MENU DE NAVIGATION
   ========================================================================== */
#menuPr { background: #333; margin: 10px; border-radius: 5px; }
#menuPr ul { list-style: none; padding: 0; margin: 0; display: flex; }
#menuPr li { flex: 1; text-align: center; border-right: 1px solid #444; }
#menuPr a { color: #fff; text-decoration: none; padding: 15px; display: block; font-weight: bold; }
#menuPr li.reserver { background: #FF8000; }

/* ==========================================================================
   CONTENU PRINCIPAL
   ========================================================================== */
#contenu { padding: 30px; }

h1 { color: #842e1b; font-size: 2.2em; margin-bottom: 5px; }

.bordure-img { 
    margin: 10px 0 25px 0; 
    max-width: 100%; 
    height: auto; 
    display: block;
}

/* Système de colonnes Flexbox */
.flex-container { display: flex; gap: 30px; align-items: flex-start; }
.col-texte { flex: 1.5; font-size: 1.1em; line-height: 1.5; color: #444; }
.col-images { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.img-style { 
    width: 100%; 
    height: auto; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); 
    border: 4px solid #fff; 
}

/* Styles des Pictogrammes (Anciennement dans le HTML) */
.liste-services { list-style: none; padding: 0; margin: 25px 0; }
.liste-services li { 
    display: flex; 
    align-items: center; 
    margin-bottom: 15px; 
    font-size: 1em; 
}
.liste-services li::before { 
    content: "✓"; 
    display: inline-block; 
    width: 28px; height: 28px; 
    background: #842e1b; color: #fff; 
    border-radius: 50%; 
    text-align: center; line-height: 28px; 
    margin-right: 15px; font-weight: bold; flex-shrink: 0;
}

/* Pied de page */
#footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #888;
    margin-top: 30px;
}
#footer a { color: #842e1b; text-decoration: none; }

/* ==========================================================================
   MOBILE (ÉCRANS DE MOINS DE 800PX)
   ========================================================================== */
@media (max-width: 800px) {
    #banniere { 
        height: auto; 
        min-height: 150px; 
        background-position: 5% center !important; 
    }
    
    #logo { 
        width: 80%; 
        margin: 0 auto; 
        padding-left: 0;
    }
    
    .flex-container { flex-direction: column; }
    
    #menuPr ul { flex-direction: column; }
    #menuPr li { border-right: none; border-bottom: 1px solid #444; }
}