@font-face {
    font-family: 'MaPolice';
    src: url('./criteria-cf-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
.navbar-light{
    background-color: rgba(0, 0, 0, 0.8) !important;
}
header{text-align: center;}

.nav-link{
    color: #B0A59D!important;
    text-transform: uppercase;
    font-size: 25px;
    transition: 0.5s;
    font-family: 'MaPolice', sans-serif; 
}

.nav-link:hover{
    color: aliceblue !important;
}



.nav-item{
    padding: 0px !important;
}

i {
    color: #B0A59D;
    font-size: 25px;
    transition: 0.5s;

}

i:hover{
    color: rgb(49, 124, 190);
}

.nav-item:not(:last-child){

    border-right: 1px solid #999 !important; 
}

.img-aside{
    width: 100%;
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.5) !important;
    max-height: 500px;
}

@media (max-width:  992px) {

    .nav-item:not(:last-child){

        border-bottom: 1px solid #999 !important;
        border-right: none !important;
    }

    .nav-link{
        text-align: center; 
    }
}





body{
    background-color: #B0A59D;
}
  

.image-container {
    position: relative;
    box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.5) !important;
}
/* contenu de la première image hover*/
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-color: rgba(0, 0, 0, 0.5);
    color: #B0A59D;
    ;
    display: flex;
    align-items: center;
    justify-content: center;
}





.row {
    padding-top: 30px;
    background-color: #B0A59D;
}

.row2 {
    padding-top: 70px;

}

figure {
    display: flex;

}

figcaption {
    text-align: right;
    padding-left: 10px;
    text-align: left;

}

h1 {
    font-family: 'MaPolice', sans-serif;
    text-decoration: underline;
            margin-top: 55px;
    
}

h2 {
    font-family: 'MaPolice', sans-serif;
}






@media (max-width: 600px) {

    /* Ajouter de l'espace entre les lignes */
    .row {
        margin-bottom: 20px;

    }

    body {
        background-color: #B0A59D;
    }

}
@media (max-width: 480px) {
    .image-container {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h1{padding-bottom: 50px;}
}

#backToTop {
    position: fixed;
    bottom: 40px;
    left: 10px;
    padding: 10px;
    background-color: #333;
    color: #B0A59D;
    font-size: 10px;
    border-radius: 5px;
    text-decoration: none;
}



/*ecran de petite taille*/
@media (max-width: 480px) {
    .col6 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .col1{   
        padding-top: 10px;
        padding-bottom: 120px;
        
    }
    .ho1{
        color: aliceblue;
    }
 
  }




  footer {
    color: #fff; /* Texte blanc */
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Assure que le footer se positionne en bas */
}

footer a {
    text-decoration: none; /* Supprime le soulignement des liens */
    color: white; /* Texte des liens en blanc */
    margin-right: 3px;
}

footer a:hover {
    text-decoration: underline; /* Ajoute un soulignement au survol */
}





/*hover*/

.image {
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition pour l'effet hover */
  }
  
  .image:hover {
    transform: scale(1.2); /* Agrandir l'image au survol */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2); /* Ajouter une ombre */
    opacity: 0.7;  /* Rendre l'image opaque */
  }

 