/* blockEntete.css - Bloc Entête - Mobile first */
.blockEntete {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.blockEntete__background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px 25px 0 0;
  position: relative;
  min-height: 400px;
}

.blockEntete__overlay {
  display: flex;
  align-items: center;
  padding: 60px;
  width: 100%;
  background: linear-gradient(to bottom,
      rgba(30, 53, 28, 0.4) 0%,
      rgba(166, 86, 13, 0.3) 69.38%,
      rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(22.5px);
  border-top-left-radius: 25px;
  min-height: 400px;

}

.blockEntete__content {
  max-width: 985px;
  margin: 0 auto;
}

.blockEntete__title {
  font-family: 'Reddit Sans', sans-serif;
  font-weight: 800;
  font-size: 5vw;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.blockEntete__title span {
  color: #FFE04B;
}

.blockEntete__accroche {
  font-family: 'Reddit Sans', sans-serif;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2.5rem;
  max-width: 697px;
  text-align: center;


}



.blockEntete__button {
  display: inline-block;
  width: fit-content;
  background-color: #ffffff;
  color: #1D1D1B;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 60px;
  transition: all 0.3s ease;
  line-height: 1;
  white-space: nowrap;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.blockEntete__button:hover {
  background-color: #f0f0f0;
  color: #1D1D1B;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.blockEntete__button:focus {
  outline: 2px solid #1D1D1B;
  outline-offset: 2px;
}

/* Responsive */
@media (min-width: 768px) {
  .blockEntete {
    min-height: 500px;
  }

  .blockEntete__background {
    min-height: 500px;
  }

  .blockEntete__overlay {
    min-height: 500px;
    padding: 10rem 0 !important;
  }

  .blockEntete__title {
    font-size: 6vw;
    margin-bottom: 1.5rem;
  }

  .blockEntete__accroche {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1200px) and (max-width: 1900px){
  .blockEntete__title{
    font-size: 2.5vw!important;
  }
}


@media (min-width: 1200px) {
  .blockEntete {
    min-height: 600px;
  }

  .blockEntete__background {
    min-height: 600px;
  }

  .blockEntete__overlay {
    min-height: 600px;
    padding-left: 50px !important;
    padding-right: 50px !important;
    width: 40%;
    display: block;
    padding: initial;

  }

  .blockEntete__button {
    margin: initial;
  }

  .blockEntete__title {
    font-size: 70px;

    text-align: left;
  }

  .blockEntete__accroche {
    text-align: left;
  }
}

@media (max-width: 767px){
  .blockEntete__accroche {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1200px) {
  .blockEntete {
    width: 100vw !important;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .blockEntete__overlay {
    border-top-left-radius: 0;
    backdrop-filter: blur(3.5px);
  }
}