

:root {
    --var-light-color: #51BCCB;
    --var-dark-color: #045D66;
}
/******************GLOBAL ********************/

.a-white {
    text-decoration: none !important;
    color: white;
}


.text-align-center
{
    text-align: center;
}
.text-align-right
{
    text-align: right;
}

.text-white {
    color: white;
}


.sk-button {
    border-radius: 8px;
    border-width: 1px;
    box-shadow: none;
    border-style: solid;
    padding: 5px;
    text-decoration: none;
    border-radius: 5px;

}

.sk-button-light {
    background-color: var(--var-light-color);
    border: 0px solid black;
    padding: 15px;
    color: white;
}

.sk-button-dark {
    background-color: var(--var-dark-color);
    border: 0px solid black;
    padding: 15px;
    color: white;
}

.sk-button-dark:hover {
    border-color: var(--var-light-color);
}

.container-block {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

.dark-block {
    background-color: var(--var-dark-color);
    color: white;
}
/******************HEADER ********************/

header {
    position: fixed;
    z-index: 7000;
    width: 100%;
    background-color: var(--var-dark-color);
    color: white;
    padding: 10px;
    height: 50px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.header-side {
    display: flex;
    align-items: center;
}

.header-side-child {
    margin-left: 10px;
    margin-right: 10px;
}

.header-side p {
    margin-bottom: 0;
}


.ul-disapointment  li {
    list-style: none;
}
/**********************CORE HEADER******/
.header-block {
    min-height: 700px;
    background-image: url("../imgs/core_header.webp");
    background-size: cover;

    color: white;
}
.profil-container {
    align-items: stretch;
}

.nav-header-xl {
    display: flex;
    justify-content: flex-end;
}
.nav-header-xl li {
    list-style-type: none ;
    margin-right: 40px;
}
.nav-header-xl a {
    text-decoration: none;
    color: white;
    transition-duration: 200ms;
    transition-property: color;
}
.nav-header-xl a:hover {
    color: var(--var-light-color);
    transition-duration: 200ms;
    transition-property: color;
}

.profil-img-container
{
    height: 300px;
    width: 300px;
    border-radius: 50%;
}
.profil-presentation-container {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    height: auto;
    width: auto;
}

.profil-presentation-container > .separator {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    height: 2px;
    background-color: black;
}
.profil-presentation-container p {
    font-size: 25px;
    text-align: center;
}

.profil-description {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}


/*********************INVERSED BLOCK ********/

.inversed-block-img {
    width: 100%;
    max-width: 400px;
    /* Indispensable depuis l'ajout des attributs width/height sur la balise :
       sans height:auto, l'attribut HTML impose sa hauteur et ecrase le ratio. */
    height: auto;
    border-radius: 20px;
}

.pmr {
    color: white;
    font-size: 30px;
    padding: 10px;
    background: #005995;
    border-radius: 50%;
}

.maps {
    border-radius: 20px;
    max-width: 100%;
}

/**********************MOBILE */

#background-mobile-tab {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--var-light-color);
    z-index: 6000;
}

.disabled-mobile {
    transition-property: left;
    transition-duration: 1s;
    left: -100%;
}
.enabled-mobile {
    transition-property: left;
    transition-duration: 1s;
    left: 0;
}

#bottom-mobile-tab {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10001;
    padding-bottom: 20px;
}


/**************MOBILE */

#bottom-border-mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5000;
    background-color: var(--var-dark-color);
}
/* Titre principal : reprend a l'identique l'ancien rendu
   (nom / filet 200px / sous-titre 25px) tout en tenant dans un seul <h1>. */
.profil-presentation-container > .hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 12px reproduit exactement l'espacement des <br> d'origine : le bloc
       retrouve ses 104px de haut, identiques a l'ancienne structure. */
    gap: 12px;
    margin: 0;
}
.hero-heading-sep {
    width: 200px;
    height: 2px;
    background-color: black;
}
.hero-heading-sub {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}
