/* ========================================================================
   SOFT-CTA-SECTION.CSS — Section CTA avec Image Background
   ========================================================================
   
   Purpose: Styles la section hero avec image d'arrière-plan, overlay sombre
            et contenu texte avec deux boutons.
   
   Structure:
   - .soft-cta: Conteneur principal full-height avec image
   - .soft-cta__bg: Image d'arrière-plan
   - .soft-cta__overlay: Overlay sombre
   - .soft-cta__fade: Gradient fade vers le bas
   - .soft-cta__inner: Conteneur du contenu
   - .soft-cta__content: Texte et boutons
   - .soft-cta__title: Titre principal
   - .soft-cta__subtitle: Sous-titre
   - .soft-cta__actions: Conteneur des boutons
   
   ========================================================================== */

.soft-cta {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-dark-alt);
}

.soft-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.soft-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.soft-cta__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.soft-cta__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  max-width: 1200px;
  width: 100%;
  padding: 0;
  display: grid;
  align-items: flex-end;
  justify-items: start;
}

.soft-cta__content {
  text-align: left;
  padding: clamp(40px, 8vh, 100px) 0 clamp(40px, 8vh, 100px)
    clamp(16px, 3vw, 48px);
  color: #fff;
}

.soft-cta__title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 200;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.soft-cta__subtitle {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 200;
  color: var(--color-grey-border);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.soft-cta__actions {
  display: flex;
  justify-content: flex-start;
  gap: clamp(14px, 3vw, 20px);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .soft-cta__title {
    margin-bottom: 12px;
  }

  .soft-cta__subtitle {
    margin-bottom: 32px;
  }

  .soft-cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
