/*--------------------------------------------------------------
# hero Section service-detail
--------------------------------------------------------------*/

.hero-section {
  background-image: url('../img/portfolio/books-2.jpg');
  background-size: cover;
  background-position: center;
  height: 35vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-contribuer {
  background-image: url('../img/portfolio/product-3.jpg'); /* à remplacer par ton image réelle */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-contribuer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 124, 145, 0.85), rgba(26, 26, 46, 0.85));
  z-index: 1;
}

.hero-contribuer .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #f0eee9;
}

@media screen and (max-width: 768px) {
  .hero-contribuer {
    height: auto;
    padding: 80px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

select,
select option {
  font-family: 'Poppins', sans-serif;
}

.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

