/* le style des element du texte: les liens, la police, la couleur et la taille du texte*/
*, ::before, ::after {box-sizing: border-box; margin: 0;}

body{font-family:  'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana; }


.container {
    display: flex;
    flex-direction: column;
}

.header {
    background-color: white;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header img {
    height: 80px;
}

.menu {
    background-color:  rgba(39, 74, 106);
    color: #fff;
    padding: 10px;
    font-size: 1.2em;
    min-height: 60px;
}


.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8em;
    
}
.menu a:hover{
    color: rgb(78, 130, 228);
    transition: 0.2s all;
 
 
}




a{color: rgb(99, 151, 248); text-decoration: none;}

.navigation {
    min-height: fit-content;
    height: 1300px; 
    flex-grow: 1;
    padding:  0% 2%;
    background-image:url("../img/home/Camargue.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: 0% 20%;
    color: #fff;
}

.navigation h1 {
    font-size: 1em;
    margin: 10px 20px;
    text-align:center;
    
}
.navigation p {
    margin: 0px 5px;
    text-align:left;
    
}

div.title {
    background-color: rgba(39, 74, 106, 0.911);
    color: white;
    padding: 1%;
    margin-left: 10px;
    margin-top: 10px;
    height: fit-content;
    min-height: 180px;
    border-radius:5px 5px;
}



div.btn{
    font-size: 1.3em;
    color: rgb(248, 250, 250); 

    margin-top: 10%;
    padding: 10px 5px;
    
    min-height: fit-content; 
    width: fit-content;
    border-radius: 10px;
    background-color: #03296e; 
    position: relative;
    box-shadow: 2px 6px rgb(9, 141, 202) ; 
    
   
}

 .btn:hover{
    box-shadow: 2px 4px  rgb(9, 141, 202);
    top: 4px;

} 

.btn:active{
    box-shadow: 0 0 rgb(9, 141, 202);
    top:6px;
}




.navigation p {
    font-size: 0.8em;
    line-height: 1.5;
    padding: 10px;
    text-align:justify;
}

.image-grid {
    display: grid;
    width:78% ;
    margin: auto;
    grid-template-columns: repeat(4, 1fr); 
    grid-gap: 10%;   
}



.image-grid a {
    display: block;
    background-image: linear-gradient(to bottom,transparent ,rgba(177, 183, 189),white 75%);
    border-radius:5px 70px;
    border: none;
    text-align: center;
    text-decoration: none;
   
}

.image-grid img {
    width: 80%;
    height: auto;
    
}

.image-grid p {font-size: 12px; color: rgb(50, 142, 204);text-align: center;}


.liste-grid{
    width:85% ; 
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2%;
   
}


.listes{
    width: 100%; padding: 0px 25px;
    border-radius:2px 30px;
    background-color:white;
    border: none;          
}



.liste-grid li {
   
    font-size: 0.89em; 
    color: rgb(24, 208, 241)  ;
    margin:5px    
}


@media only screen and (max-width: 700px) {
.menu li{font-size: smaller; margin-left:25px;}
.title {font-size:0.65em ; }
.title p{margin-left: 10px; }

}