@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Protest+Revolution&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none; 
    scroll-behavior: smooth;
    font-family: roboto;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 100vh;
    width: 100vw;
    background-image: url(../image/background.png);
    background-attachment:fixed;
    background-size: cover; /*Pour recouvrir l'intégralité de l'image*/
    backdrop-filter: blur(1px);
}
li .active{
    background-color: #f6f7f9;
    border-radius: 23px;
    color: #001438;
}
.navbar{
    position: sticky;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    color:aliceblue;
}

.navbar a:hover{
    background-color: #f6f7f9;
    border-radius: 23px;
    color: #001438;
    transition: background-color 1s;
}
.navbar a {
    color:aliceblue;
    padding: 10px;
}
.navbar .logo{
    font-size: 2em;
    font-weight: bold;
}
.navbar .menu{
    font-size: 1.4em;
    display: none;
}
.navbar .navlinks ul{
    display: flex;
}
.navbar .navlinks ul li{
    margin: 0 25px;
}
.navlinks.mobile-menu{
    margin-left: 0;

}
h1 {
    position: relative;
    margin-top: 100px;
    color: aliceblue;
    text-align: center;
    font-weight: 400;
    
}
h2{
    text-align: center;
    padding: 2%;
}
h3 {
    position: relative;
    margin-bottom: 10%;
    margin-top: 15%;
    margin-left: 23%;
    margin-right: 23%;
    color: aliceblue;
    text-align: center;
    padding: 2%;
    font-size: 1.5em;
    font-weight: 400;
    box-sizing: border-box;
    background-color: #f28e0277;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.332);

}
h1{
    
    margin-bottom: 5%;
    color:aliceblue;
    text-shadow: #0e184d 1px 0 20px;
}
a {
    color: aliceblue;
}
p{
    font-size: 20px;
    margin-bottom: 5%;
    color:aliceblue;
    text-shadow: #0e184d 1px 0 20px;
    padding: 40px;
    
}
.texte{
    text-align: center;
    font-size: 1.1em;
    background-color: #f2820277;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.995);
}
button{
    background-color: #1a295795;
    color: aliceblue;
    border: 2px solid #fcfeff;
    transition-duration: 0.4s;
    border-radius: 10px;
    padding: 2%;
}
button:hover{
    border: 5px solid #0587f8;
    margin-left: 1%;
    box-shadow: #fdfefe 1px 0 20px;
}
span{
    font-size: 2em;
    font-family: Protest Revolution;
}
/*Page d'accueil*/
.me{
    width: 23%;
    position: absolute;
    top: 23%;
    left: 10%;
    border-radius: 70%;
}
.introduction{
    width: 100%;
    display: flex;
    background-color: #0e194dc8;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.introduction > p{
    text-align: center;
}
.aventure{
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
.aventure:hover{
    border: 5px solid #f6f7f9;
    margin-left: 1%;
    box-shadow: #fdfefe 1px 0 20px;
}
/*PAGE DU PORTFOLIO*/
.card-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center; /* Ajustez cela selon vos besoins */
    flex-wrap: wrap;
}
.card {
    
    width: 260px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.332);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.card-button{
    background-color: #3ba0f9be;
}
.card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
            background-color: white;
            padding: 20px;
        }

.card-content p {
        color: #333;
        font-size: 16px;   
        line-height: 1.5;
}
/*PAGE DE LA PROMENADE*/
.prom-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center; /* Ajustez cela selon vos besoins */
    flex-wrap: wrap;
}
.prom-card {
    
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.332);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.prom-card img {
    width: 100%;
    height: auto;
    display: block;
}

/*PAGE DU CV*/
.gauche-cv{
    width: 30%;
    box-sizing: border-box;
    padding: 1%;
    background-color: aliceblue;
    border-radius: 30px;
    margin: 45px 5%;
}
.gauche-cv ul li{
    padding: 3%;
}
/*Pour mobile*/
@media screen and (max-width: 1000px){
    body.blur-effect .me,
    body.blur-effect .introduction,
    body.blur-effect .aventure,
    body.blur-effect h3,
    body.blur-effect h1 {
    filter: blur(7px);
}
p{
    font-size: 1.2em;
}
h1{
    font-size: 1.8em;
}
.aventure{
    padding: 3%;
    margin-bottom: 7%;
}
h3{
    margin-top: 35%;
    font-size: 1.1em;
}
.navbar .logo {
    font-size: 1.3em;
    margin-top: 2%;
}
.navbar .menu {
    font-size: 1.3em;
    
}
.prom-card {
    width: 90%;
}
.navbar{
    padding: 0;
    z-index: 2;
}
.navlinks {
     top: 0;
     left: 0;
     position: absolute;
     background-color: rgba(0, 0, 0, 0.325);
     backdrop-filter: blur(7px);
     width: 100%;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-left: -100%;
     transition: all 0.5s ease;     
    }
    
    .navlinks ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar .navlinks ul li{
        margin: 35px 0;
        font-size: 1.7em;
    }
    .navbar .menu {
       
        display: block; /* faire apparaitre le menu*/
        position: absolute;
        right: 40px;
        top: 35px;
    }
    .navbar .logo{
        position: absolute;
        top:30px;
        left: 35px;
    }
    .introduction{
        z-index: 0;
        margin-top: 23%;
    }
    
}
footer {
    display : block;
    width : 100%;
    right : 0;
    left : 0;
    bottom: 0;
    color : white;
    margin-top : 50px;
    height : 150px;
    background-color : #0D1327;
    padding : 10px;
    box-sizing : border-box;
}


