/*--------------------------------------*/
/*                BASE                  */
/*--------------------------------------*/

* {
    padding: 0;
    margin: 0;
	box-sizing: border-box;
    scrollbar-color:  #7e5218 #d89946;
    cursor: url(../images/curseur/cursor.png) 0 10, auto;
}

@font-face {
	font-family: Fontin;
	src: url(../font/Fontin-Regular.ttf);
	font-weight: normal;
}

body {
	background: url(../images/background/bg.jpg) fixed;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	font-family: "Fontin", sans-serif;
    overflow-x: hidden;
    user-select: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*--------------------------------------*/
/*               HEADER                 */
/*--------------------------------------*/

.container-img-cache {
    position: fixed;
	display: flex;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.contenu-img-cache {
    height: 180px;
    width: 100%;
    border-bottom: 1px solid #9b641d;
}

.container-elements-header {
    position: fixed;
	top: 0;
	left: 0;
    background-color: #6A4A72;
    opacity: 0.8;
	height: 60px;
    width: 100vw;
    box-shadow: 0 5px 5px #181818;
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.container-logo-site {
    display: flex;  
    margin-left: 10px;
}

.contenu-logo-site {
    font-weight: bold;
    color: #dbeaeb;
    text-shadow: 1px 5px 5px #181818;
}

.contenu-verset {
	color: #dbeaeb;
    padding-left: 20px;
	padding-right: 10px;
	font-style: italic;
    text-shadow: 1px 2px 1px #181818;
    text-align: center;
}

.img-bl {
    cursor: url(../images/curseur/cursor2.png) 0 10, auto;
    filter: drop-shadow(1px 2px 2px #181818); 
}

.bible {
    position: relative;
    left: -50px;
}


/*--------------------------------------*/
/*              MENUS                   */
/*--------------------------------------*/

.pos-titre-btn {
    position: absolute;
    top: 10px;
    display: flex;
    justify-content: space-around;
    margin-left: 50px;
    margin-top: 15px;
}


.format-titre-btn-accueil { 
    color: white;
    margin-left: 6px;
}

.format-titre-btn-eglise { 
    color: white;
    margin-left: 10px;
    
}

.format-titre-btn-activites { 
    color: white;
    margin-left: 2px;
    
}
.format-titre-btn-agenda { 
    color: white;
    margin-left: 6px;
}

.format-titre-btn-souvenir { 
    color: white;
    margin-left: -1px;
}

.format-titre-btn-contact { 
    color: white;
    margin-left: 4px;
}

.img-icthus {
    width: 135px;
}

.container-menus {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.menus {
    position: fixed;
    top: 90px;
}

.container-menu-classique {
    display: flex;
}

.menu-classique > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -20px;
}

.bouton-icthus > a {
    margin-left: 20px; /* Si décalage du bouton icthus alors appliquer 
    les même valeurs en margin dans (.menu-classique > ul et .pos-titre-btn) */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}
   
.bouton-icthus:hover > a {
    transform: rotate(25deg);
}


/*--------------------------------------*/
/*            DRAW HAMBURGER            */
/*--------------------------------------*/

.container-menu-hamburger{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-top: -80px;
    width: 100vw;
}

.menu-hamburger {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-hamburger div:before,
.menu-hamburger div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: white;
    border-radius: 3px;
    transition: .5s;
}

.menu-hamburger div:before{
    transform: translateY(-7px);
}

.menu-hamburger div:after{
    transform: translateY(7px);
}

.menu-hamburger div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: white;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

/*--------------------------------------*/
/*          ACTIVE MENU HAMBURGER       */
/*--------------------------------------*/

#check{
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-195%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .container-menu-hamburger .menu-hamburger div{
	background-color: transparent;
}

#check:checked ~ .container-menu-hamburger .menu-hamburger div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .container-menu-hamburger .menu-hamburger div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}


/*--------------------------*/
/*        INFOS BULLE       */
/*--------------------------*/





