

  /* Image de fond */
.hero-section {
    background-image: url('./DATA/IMG/gear.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px; /* espace pour ne pas passer sous la navbar */
    position: relative;
}

/* Conteneur de la vidéo centré */
.video-container {
    z-index: 10;
    text-align: center;
}


/* Fixer la navbar toujours visible */

.navbar {
    z-index: 9999;
}


.bg-image{
    background-size: cover;
    width: 100%;
    height: 850px;
    object-fit: cover;
    opacity: 0.55;
    position:absolute;
    z-index: 1
  }

  .card {
    transition: transform 0.2s ease;
}
.card:hover {
    transform: scale(1.05);
}

.contact-section a {
    text-decoration: underline;
}