
a,
h1.logo-text a,
h3 span.first-word,
h2,
h2 a:link,
h2 a:visited,
.contentheading {
    color: #907101;
}

/* ===================== *
   Style global responsive
   ===================== */

/* Assurer que le html et le body prennent toute la hauteur */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Conteneur principal avec image de fond */
#body_bg {
    background-image: url(../img/style3/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;       /* couvre l’intégralité de l’écran */
    width: 100vw;
    min-height: 100vh;            /* au moins la hauteur de la fenêtre */
    margin: 0;
    padding: 0;
    position: relative;
}

/* Overlay semi-transparent qui ne bloque pas le texte */
#body_bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* clics passent à travers */
}

/* Contenu à placer au-dessus de l'image */
#body_bg > .content {
    position: relative;
    z-index: 2;
}

.parag_remarque {
    display: block;
    line-height: normal;
    text-align: left;
    margin-bottom: 10px;
    padding: 0px;
    border-top-width: thin;
    border-top-style: dashed;
    border-top-color: #666;
}
.parag_remarque img {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
}
.carte_lieu {
    background-image: url(../img/style3/carte.gif);
    background-repeat: no-repeat;
    display: block;
    float: right;
    height: 44px;
    width: 72px;
    background-position: center top;
}
.carte_lieu_txt {
    display: block;
    width: 80px;
    text-align: center;
    margin-top: 45px;
}
.cont_icon {
    display: inline;
    float: left;
    height: 44px;
    width: 74px;
    padding-bottom: 50px;
    margin-right: 7px;
    text-align: center;
    font-size: 0.9em;
}
.cont_icon span {
    display: block;
    width: 74px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    line-height: initial;
}
.clear_b {
    clear: both;
}

/* =====================
   Styles pour tableaux
   ===================== */
table {
    background-color: rgba(255,255,255,0.85); /* fond translucide */
    color: #222; /* texte sombre pour contraste */
    border-collapse: collapse;
    width: 100%;
}

table th,
table td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-align: left;
}

.copyright {
    text-align: center;
}
/* =====================
   Media Queries (mobile)
   ===================== */
@media screen and (max-width: 768px) {
    #body_bg {
        background-attachment: scroll; /* fixe désactivé sur mobiles */
    }
    .cont_icon {
        float: none;
        margin: 5px auto;
    }
    .carte_lieu {
        float: none;
        margin: 0 auto;
    }
    table th, table td {
        font-size: 0.9em; /* adapter le texte aux petits écrans */
    }
}