:root {
    --text-shadow: 0 0 2px rgb(51, 51, 51);
    --box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.4);
    --principal-color:rgb(90, 155, 155);
    --principal-color-transparent:rgb(65, 112, 112, 0.9);
    --principal-opacity:rgba(0, 0, 0, 0.3);
    --container-height: 80%;
    --text-container-width: 40rem;
}

*{
    box-sizing: border-box;
    margin: 0;
	padding: 0;
	font: inherit;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

#page-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: system-ui, Arial, Helvetica, sans-serif;
}

#pre-page-header{
    height: 2.5rem;
    width: 100%;
    background-color:rgb(255, 227, 175);
    border-bottom: 2px solid rgba(148, 148, 148, 0.25);
    display: none;
}

#pre-page-header p{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 100%;
    font-weight: bold;
    color: rgb(190, 0, 0);
    margin: auto;
}

#page-header{
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 2px 7px 2px rgba(54, 46, 46, 0.4);
    background-color: var(--principal-color-transparent);
    backdrop-filter: blur(4px);
    z-index: 5;
    position: fixed;
}

#page-header__navbar{
    height: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
}

#page-header__navbar__logo_container{
    height: 100%;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-header__navbar__logo_container__img{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

#page-header__navbar__title-container{
    height: 100%;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#page-header__navbar__title{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: var(--text-shadow);
}

#page-header__navbar__title__name{
    height: 60%;
    width: 100%;
    font-size: 2.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-header__navbar__title__specialty{
    height: 40%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: var(--text-shadow);
}

/* Menu - boutons */

#page-header__navbar__menus{
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.page-header__navbar__menus__button{
    height: 75%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-shadow: var(--text-shadow);
    cursor: pointer;
    color: white;
    border: none;
    background-color: rgba(65, 112, 112, 0);
}

.page-header__navbar__menus__button a{
    font-size: 1.8rem;
}

.page-header__navbar__menus__button:hover{
    font-weight: 600;
    transition: 200ms linear;
}

#page-header__navbar__buttons-container{
    height: 100%;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2%;
}

#page-header__navbar__buttons-container__language-button{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-header__navbar__buttons-container__language-button__language{
    font-size: 1.5rem;
    color: white;
}

#page-header__navbar__buttons-container__dropdown-menu_open-button{
    height: 100%;
    width: 50%;
    justify-content: center;
    align-items: center;
    font-size: 180%;
    color: white;
    display: none;
}

/* dropdown menu - open */

#page-header__navbar__dropdown-menu{
    height: 9rem;
    width: 75%;
    align-self: center;
    position: absolute;
    top: 6rem;
    left: 16%;
    display: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#page-header__navbar__dropdown-menu__buttons-container{
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    background-color: #5A9B9B;
    border: 2px solid var(--principal-color-transparent);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.page-header__navbar__dropdown-menu__button{
    height: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-shadow: var(--text-shadow);
    cursor: pointer;
    color: white;
    background-color: rgba(65, 112, 112, 0);
    border: 1px solid white;
}

#page-header__navbar__dropdown-menu__last-button{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#page-header__navbar__dropdown-menu__appointment-button{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: none;
}

#page-header__navbar__dropdown-menu_close-button-container{
    height: 100%;
    width: 10%;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

#page-header__navbar__dropdown-menu_close-button{
    height: 19%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 180%;
    color: #5A9B9B;
}

#page-header__navbar__dropdown-menu_close-button-container span {
    width: 100%;
    height: 81%;
}

/* ------------- */

#page-main{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    background-color:  rgb(240, 240, 240);
}

.page-main__section{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
}

.page-main__section__title{
    font-size: 3rem;
    text-align: center;
    font-style: italic;
    color: var(--principal-color);
    margin: 3rem 0 2.5rem 0;
}

#page-main__appointment{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#page-main__appointment__title{
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3.5rem;
    font-style: italic;
    color: #4c8383;
    margin: 2.5rem 0;
}

#page-main__appointment__container{
    height: 90%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

#page-main__appointment__container__image{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

#page-main__appointment__container__image img{
    /* height: 45rem;
    width: 100%; */
    height: 35rem;
    width: 62.2rem;
    max-height: 100%;
    max-width: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 8px;
}

#page-main__appointment__container__image figcaption{
    font-size: 0.8rem;
    font-style: italic;
    display: flex;
    justify-content: flex-start;
    margin: 0.3rem 0 0.3rem 0;
}

#page-main__appointment__button-container{
    height: 7rem;
    width: 17rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.466);
    border-radius: 8px;
    border: 3px solid #406e6e;
    position: absolute;
}

#page-main__appointment__container p{
    font-size: 1.4rem;
    color: #406e6e;
}

#page-main__appointment__container a{
    height: 3rem;
    width: 8rem;
    display: flex;
    justify-content: center;
}

#page-main__appointment__container a img{
    height: 100%;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

#page-main__definition p{
    margin-bottom: 1.5rem;
}

#page-main__definition__video-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}

#page-main__definition__video-container iframe{
    /* 16/9 */
    height: 35rem;
    width: 62.2rem;
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
}

#page-main__definition__video-container figcaption{
    font-size: 0.8rem;
    font-style: italic;
    display: flex;
    justify-content: flex-start;
    margin: 0.3rem 0 0.3rem 0;
}

#page-main__for_who__list {
    width: 80%;
    margin: 1.5rem 0 1rem 0;
}

#page-main__for_who__list li {
    list-style-type: disc;
    margin: 0.5rem ;
}

#page-main__for_who__list li::marker {
    color: var(--principal-color);
}

#page-main__for_who__body-image-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 6rem;
}

#page-main__for_who__body-image-container img{
    height: 15%;
    width: 15%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin: 1rem;
}

#page-main__who_am_I{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    background-color: rgba(90, 155, 155, 0.2);
    border: 2px solid var(--principal-color);
    border-radius: 8px;
}

#page-main__who_am_I__title{
    height: 100%;
    width: 100%;
    margin-top: 3rem;
}

#page-main__who_am_I__container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 3rem;
}

#page-main__who_am_I__photo-container{
    height: 100%;
    width: 15%;
    justify-content: center;
    align-items: center;
    display: none;
}

#page-main__who_am_I__photo-container img{
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid var(--principal-color);
    display: none;
}

#page-main__who_am_I__text-container{
    height: 100%;
    width: 80%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

#page-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    background-color: var(--principal-color-transparent);
    text-shadow: var(--text-shadow);
}

#footer__Infos{
    height: 95%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer__Infos__Section{
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.footer__Infos__Section__Content{
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__Infos__Section__Content__title{
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    text-decoration: underline;
    text-underline-offset: 7px;
    margin: 2% 0 4% 0;
}

.footer__Infos__Section__Content__Element{
    height: 80%;
    width: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3%;
}

.footer__Infos__Section__Content__Element__Icon{
    height: 100%;
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
}

.footer__Infos__Section__Content__Element_Text{
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
    align-items: flex-start;
    gap: 10%;
}

#footer__copyright{
    height: 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.75rem;
}

#footer__copyright__webmaster-name{
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
}

/* smartphone */
@media screen and (max-width: 767px){

    #page-header__navbar__logo_container{
        width: 20%;
        margin-left: 2%;
    }

    #page-header__navbar__title-container{
        width: 60%;
    }
    
    #page-header__navbar__buttons-container{
        width: 20%;
    }

    .page-main__section__title{
        font-size: 2rem;
        margin: 3rem 0 1.5rem 0;
    }

    
    #page-main__appointment__title{
        font-size: 2.5rem;
    }

    #page-main__appointment__container__image img{
        height: 17.5rem;
    }

    #page-main__definition__video-container iframe{
        height: 17.5rem;
    }

    #page-main__for_who__body-image-container img{
        width: 25%;
    }

}

/* tablet */
@media screen and (max-width: 1023px){

    #pre-page-header p{
        font-size: 70%;
    }

    #page-header__navbar__menus{
        position: fixed;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.25s;
        display: none;
    }

    #page-header__navbar__logo_container{
        width: 20%;
        margin-left: 2%;
    }

    #page-header__navbar__title-container{
        width: 60%;
    }

    #page-header__navbar__buttons-container__language-button__language{
        font-size: 1.2rem;
    }

    #page-header__navbar__buttons-container__language-button__language:hover{
        font-weight: 600;
    }
    
    #page-header__navbar__buttons-container{
        width: 20%;
    }
    
    #page-header__navbar__buttons-container__dropdown-menu_open-button{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #page-main__definition p{
        font-size: 1rem;
    }

    #page-main__for_who__explanation p{
        font-size: 1rem;
    }

    #page-main__for_who__list li {
        font-size: 1rem;
    }

    #page-main__for_who__body-image-container img{
        width: 7rem;
    }

    #page-main__who_am_I__container{
        flex-direction: column;
    }

    #page-main__who_am_I__photo-container{
        height: 100%;
        width: 25%;
        margin-bottom: 5%;
    }

    #page-main__who_am_I__text-container p{
        font-size: 1rem;
    }

    #footer__Infos{
        flex-direction: column;
    }

    .footer__Infos__Section{
        height: 100%;
        width: 100%;
    }

    .footer__Infos__Section__Content__title{
        margin: 3% 0 5% 0;
    }
    
}

/* desktop (wide) */
@media screen and (min-width: 1024px) and (max-width: 1023px){
    
}