@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

*{
    margin: 0;
    font-family: "Indie Flower", cursive;
}

/* menu */

header{
    background-color: darkslategray;
    display: flex;
    justify-content:space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 99;
}

header img{
    height: 50px;
    padding-left: 20px;
}

nav ul{
    list-style: none;
    display: flex;
}

nav a{
    color: white;
    text-decoration: none;
    padding: 20px;
}

nav a:hover{
    background-color: forestgreen;
}

/* section hero */ 

section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 900px;
    width: 100%;
}

#hero{
    background-image: url(../imgs/Content1.jpg); 
    background-position: bottom center;
}

.img400{
    height: 400px;
}

/* À propos */

#a-propos{
    background-color: #2f2f2f;
    color: white;
    height: 450px;
}

.conteneur{
    display: flex;
}

.conteneur img{
    width: 400px;
}

.infobox{
    width: 400px;
    padding: 20px;
}

/* Parallax */

#parallax{
    background-image: url(../imgs/parallax.jpg);
    height: 450px;
    background-attachment: fixed;
}

/* CONTACT */

#contact{
    background-image: url(../imgs/contact.jpg);
    background-position: center right;
}

footer{
    background-color: #2f2f2f;
    color: white;
    text-align: center;
}

/* INFO CAMPING */

#camping{
    flex-direction: row;
}

#info-gauche{
    width: 40%;
    height: 900px;
    background-image: url(../imgs/A-propos-1.jpg);
    background-size: cover;
    background-position: center center;
}
#info-droite{
    width: 60%;
    height: 900px;
    background-color: darkslategray;
    color:white;
    
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

#info-droite p{
    width: 50%;
    margin-right: 25%;
    margin-bottom: 30px;
    text-align: justify;
}

#info-droite h2{
    margin-right: 25%;
}

#kayak{
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    
    background-image: url(../imgs/A-propos-2.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#text-kayak{
    width: 40%;
    background-color: white;
    margin-left: 10%;
    padding: 30px;
    
    border-radius: 50px;
}

#text-kayak p{
    margin-bottom: 30px;
    text-align: justify;
}