/* Styles pour le corps de la page */
body {
    background-color: linear-gradient(to bottom, #717a5b, #D9D8CB);
    font-family: "bublebody neue";
    transition: margin-top 3s;
    background-size: cover;
  	margin-top:40px
}
.menu-ascend {
  transform: translateY(-100%);
}
.menu-descend {
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}

}
/* Styles pour la barre de navigation */
.navbar {
    background-color: #f3f1eA; 
    padding: 10px; 
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); 
    position: flex; 
    width: 100%; 
    z-index: 1000; 
    top: 0; 
}
/* Styles pour les liens dans la barre de navigation */
#lm,
#ls {
    color: #2c3b2f;
    font-family: 'Quicksand';
    font-weight: bold;
    text-transform: uppercase; 
    margin-right: 20px; 
    margin-top: 10px;
}
.nav-link{
 color: #2c3b2f;
    font-family: 'Quicksand';
    font-weight: bold;
    text-transform: uppercase; 
  margin-top: 10px;
  	font-size:10px;
}
/* Au survol des liens dans la barre de navigation */
.nav-link:hover,
#lm:hover,
#ls:hover {
    color: #f7d26b;
    transition: color 0.3s;
}

/* Styles pour le jumbotron */
.jumbotron {
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: #fff;
    transition: padding 0.5s ease, color 0.5s ease; 
    background-color: #D9D8CB;
    border-radius: 10px; 
    margin-top: 20px; 
	max-width: 100%;}

/* Au survol du jumbotron */
.jumbotron:hover {
    padding: 90px 20px;
    color: #e9ecef;
}

/* Styles pour les boutons primaires */
.btn-primary
{
    transition: opacity 0.5s ease;
    font-weight: bold;
    background-color: #717a5b;
  	font-size:15px;
    border-color: #717a5b;
    border-radius: 9px;
    height: 50px;
    width: 150px;
    text-transform: uppercase; /* Met les boutons en majuscules */
}
#comment-btn,#ou-btn
 {   
  transition: opacity 0.5s ease;
    font-weight: bold;
    background-color: #717a5b;
    border-color: #717a5b;
    border-radius: 9px;
    height: 40px;
    width: 150px;
    text-transform: uppercase; /* Met les boutons en majuscules */
}

/* Au survol des boutons */
.btn-primary:hover,
#ou-btn:hover,
#comment-btn:hover {
    opacity: 0.8;
    background-color: #f3f1eA;
    color: #717a5b;
    border-color: #717a5b;
}

/* Styles spécifiques pour les boutons d'options et de commentaire */
#ou-btn
{
    width: 130px;
    
}

#comment-btn {
    width: 130px;
      margin-left: 10px;

}
#boutique{
      margin-right: 70px;

}
#acceuil{
        margin-right: 70px;

}

/* Styles pour le logo */
#logo {
    width: 120px; 
float: left; 
}
@media (min-width: 576px) {
    .btn {
        width: auto; 
        margin-bottom: 0; 
    }
}
img{
    max-width: 100%;
    height: auto;
}
#fer{
    margin-right: 20px;
}
#p1{
font-size: 20px;
   color: #717a5b;
   font:bold;
}
#p2{
    font-size: 20px;
    color: #717a5b;
    font:bold;
}
#p4{
    font-size: 20px;
    color: #333A23;
    font:bold;
}


.legende {
    margin-bottom: 20px; 
    font-size: 22px; 
    color: #717a5b; 
}
video-container {
    max-width: 200px;
    margin: 0 auto; 
    margin-bottom: 30px;
    max-height: 100px; 
}

.video-container video {
            width: 100%; 
            height: 100%; 
 }

#pdep,#parr{
width: 100px; 
height: auto;
float: left; 
}

#parr{
width: 100px; 
height: auto;
float: right; 
}
   @keyframes swing {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(10deg); }
            50% { transform: rotate(-10deg); }
            75% { transform: rotate(5deg); }
            100% { transform: rotate(0deg); }
        }

        /* Application de l'animation aux images */
        .swing-animation {
            animation: swing 2s ease-in-out infinite;
        }
.zoom-animation:hover {
    transform: scale(1.1); /* Augmente la taille de 10% au survol */
    transition: transform 0.3s ease; /* Ajoute une transition fluide */
}
#b-retour {
    position: fixed;
    top: 70px; /* Ajustez cette valeur en fonction de la hauteur de votre barre de navigation */
    right: 20px;
    display: none;
    z-index: 1000; /* Pour s'assurer que le bouton reste au-dessus des autres éléments */
    background-color: #333A23; /* Couleur de fond */
    color: white; /* Couleur du texte */
    border: none; /* Suppression de la bordure */
    padding: 10px 20px; /* Espacement interne */
    font-size: 16px; /* Taille de la police */
    border-radius: 5px; /* Coins arrondis */
    cursor: pointer; /* Curseur pointeur */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre */
    animation: blink 1s infinite; /* Animation de clignotement */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#b-retour:hover {
    background-color: #333A23; /* Couleur de fond au survol */
}
