/* Styles pour les blocs personnalisés */
.wp-block-acf-hero-section,
.hero-section {
  position: relative;
  min-height: 60vh;
  height: 90vh;
  padding: var(--gutter-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.image-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container-3xl, 1400px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 var(--gutter-md);
}

.h-500 .hero-content {
  /* top: -6rem; */
  padding-top: 5rem;
}

.hero-section.h-500 {
  min-height: fit-content;
  align-items: flex-start;
}

.hero-title {
  font-size: var(--font-size-5xl);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white-color, #fff);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--white-color, #fff);
  opacity: 0.9;
}

.hero-text p {
  font-size: var(--font-size-2xl);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--white-color, #fff);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.hero-link:hover {
  transform: translateY(-2px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@media (max-width: 575px) {
  .hero-content {
    padding: 0;
    gap: 0rem;
  }
  .hero-title {
    gap: 0rem;
  }

  .wp-block-acf-hero-section,
  .hero-section {
    align-items: flex-start;
  }

  .hero-link-container {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-section {
    min-height: 90vh;
    height: 120vh;
  }
}
