*{
    margin:0px;
}

body{
    background: #f5f5f5;
    font-family : Arial;
}

/*nav*/
header{
    position: fixed;
    width:100%;
    z-index:10;
}

nav{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    background: #072440;
    height : 50px;
    align-items : center;
    z-index:10;
}

nav a{
    text-decoration: none;
    color : white;
}

nav select{
    background: #072440;
    color:white;
    border:none;
}

nav a:hover{
    border-bottom: lightblue 5px solid;
    transition : border-bottom 0.2s;
}

nav img{
    height:40px;
}

/* carousel */
.carousel {
    top: 50px;
    width: 100%;
    height: 100vh; /* pleine hauteur de la fenêtre */
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-images img.active {
    opacity: 1;
    z-index: 1;
}

/* Boutons flèches */
.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:none;
    border: none;
    color: white;
    font-size: 3rem;
    padding: 0.3rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    z-index: 9;
    transition: color 0.3s ease;
}

.carousel button:hover {
    color:grey;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* texte du carousel */
.text{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    background:none;
    border: none;
    color: white;
    font-size:32px;
    border-radius: 50%;
    z-index: 9;
    text-align:center;
    width:85%;
    text-shadow: 2px 2px darkgrey;
}

.description{
    font-size : 24px;
}

.slogan{
    font-family:'Verdana Bold';
}


/* blog */
.blog{
    align-items : center;
    display : flex;
    flex-direction : column;
    justify-content: space-evenly;
    width : 100%;

}

article{
    background: #a5a7d6;
    display: inline-block;
    box-shadow: 7px 7px 15px grey;
    margin: 20px;
    position : relative;
    width : 90%;
    height : 300px;
    border-radius:10px;
}

p{
    font-size: 20px;
}

h2{
    font-size:32px;
    font-family : 'Verdana Bold';
}

.left img{
    height : 300px;
    border-radius : 10px 0px 0px 10px;

}

.right img{
    height : 300px;
    border-radius : 0px 10px 10px 0px;
}

.left{
    position : absolute;
    top : 0;
    left : 0;
    align-items : left;
}

.right{
    position : absolute;
    top : 0;
    right : 0;
    align-items : right;
}

.text-right{
    position : relative;
    left : 475px;
    width : 800px;
    top:20px
}

.text-left{
    position : relative;
    left : 25px;
    top : 20px;
    width:800px;
}

/* carte */
iframe{
    border-radius : 0px 10px 10px 0px;
    border : none;
}

.full-screen img{
    position : absolute;
    top : 10px;
    right : 10px;
    height : 30px;
    width : 30px;
    background : #ffffff;
}

.full-screen img:hover{
    background : #f0f0f0;
}

/* footer */
.Icon {
    width: 50px;
    height: 50px;
}

.icon-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 16px; 
    margin-top: 8px;
}

 footer{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    background: #0b4470;
    color: white;
    align-items : center;
    gap:15px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.25);

 }

footer > section > a{
    display: inline-flex;
    align-items: center;
}

footer img{
    height:75px;
    width:75px;
}
