@charset "iso-8859-1";


html, body {
    margin: 0;
    padding: 0;
}
html, body {
    overflow-x: hidden;
}

#global {
    width: 100%;
    color: #b10505;
    font-family: Arial;
    display: block;
    overflow: hidden; 
	
}

#titre {
    color: #b10505;
    width: 20%;          /* -> 4 */
    position: relative;
    float: left;
    font-size: 20px;
    padding-left: 3%;
    /* padding-right: 10%; */
}

body {
    padding-top: 18px;
}

#titre,
#menu {
    margin-top: 0;
}

/* ========================= */
/* MENU PRINCIPAL */
/* ========================= */

:root {
    --font-menu: 15px;
}

#menu {
    z-index: 9999;
    position: relative;
    float: right;
    width: 70%;
    overflow: visible;
    margin-right: 3%;
}

#menu #menuDeroulant {
    border: 0;
    text-align: right;
    margin: 0;
    font-size: var(--font-menu);
    font-family: Arial;
    /* margin: 4em 0 0 0; */
    /* margin-top: 1.8em; */
    /* padding: 0 0 10px 0; */
}

#menu #menuDeroulant ul {
    margin: 0;
    padding: 0;
}

#menu #menuDeroulant ul li {
    margin: 0;
    padding: 0;
    display: inline;
}

#menu #menuDeroulant li {
    float: right;
    margin: 0;
    padding-right: 1.5em;
    list-style-type: none;
}

#menu #menuDeroulant li a {
    text-decoration: none;
    color: #b10505;
}

#menu #menuDeroulant li a:link,
#menu #menuDeroulant li a:visited {
    display: block;
    width: 100%;
    float: none;
    height: 1%;
    margin: 0;
    text-decoration: none;
    color: #b60909;
}

#menu #menuDeroulant li a:hover {
    color: #710505;
}


/* ========================= */
/* SOUS-MENU 1 */
/* ========================= */

#menu #menuDeroulant .sousmenu {
    display: none;
    position: absolute;
    float: none;
    font-size: 12px;
    list-style-type: none;
    margin: 0;
    padding: 6px 0 0 0;
    border: 0;
}

#menu #menuDeroulant .sousmenu li a:link,
#menu #menuDeroulant .sousmenu li a:visited {
    display: block;
    margin: 0 20px 0 0;
    padding: 0;
    text-decoration: none;
    text-align: left;
    color: #efefef;
}

#menu #menuDeroulant .sousmenu li a:hover {
    color: #ccc;
}

#menu #menuDeroulant li:hover > .sousmenu {
    display: block;
}


/* ========================= */
/* SOUS-MENU 2 */
/* ========================= */

#menu #menuDeroulant .sousmenu1 {
    display: none;
    position: absolute;
    float: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: 0;
    width: 180px;
    z-index: 999;
    font-size: 9px;
}

#menu #menuDeroulant .sousmenu1 li a:link,
#menu #menuDeroulant .sousmenu1 li a:visited {
    display: block;
    margin: 0;
    padding: 4px 0;
    text-decoration: none;
    text-align: left;
    width: 180px;
    color: #efefef;
    z-index: 999;
    text-decoration: underline;
    font-style: italic;
}

#menu #menuDeroulant .sousmenu1 li a:hover {
    color: #ccc;
}

#menu #menuDeroulant li:hover > .sousmenu1 {
    display: block;
}


/* ============================ */
/* LANGUE INVERSEUR PAGE ACCUEIL */
/* ============================ */


/* =======================
   IMAGE PAGE ACCUEIL
======================= */

#photo_accueil {
    position: relative;
    width: 100%;
    height: 80vh;
}

#photo_accueil img {
    position: absolute;
    top: 14vh;
    left: 50%;
    transform: translateX(-50%);
    height: 60vh;
    width: auto;
    pointer-events: none;
}

#photo_accueil img {
    border: solid white 1px;
}


/* =======================
   LANGUE ALIGNÉE IMAGE (FIX FINAL CSS PUR)
======================= */

#langue {
    position: absolute;
    top: calc(14vh + 60vh + 2vh);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;

    /* 🔥 clé du fix */
    width: max-content;
    min-width: 60vh;
    max-width: 90vw;

    font-family: Arial;
    font-size: var(--font-menu);
    z-index: 10;
}

/* liens */

#langue a {
    text-decoration: none;
    color: #b10505;
    white-space: nowrap;
}

#langue a:hover {
    color: #710505;
}


/* --- FIN PHOTO ACCUEIL --- */
/* --- CHANGEMENT DE LANGUE --- */
/* --- FIN CHANGEMENT DE LANGUE --- */


/* --- ARTICLE --- */

#article {
    margin-left: auto;
    margin-right: auto;
    margin-top: 130px;
    width: 60%;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

#article a:link,
#article a:visited {
    color: #222;
    text-decoration: underline;
}


/* --- GALERIE --- */

#gallery {
    padding-top: 6%;
    width: 960px;
    text-align: center;	
}


/* --- COPYRIGHT --- */

#copyright {
    margin-left: 20%;
} 