/* hero-cruise.css — Zephyr Design System */

[data-component="hero-cruise"] {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 1024px) {
  [data-component="hero-cruise"] { min-height: 80vh; }
}

.hero-cruise__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: var(--z-overlay);
}

.hero-cruise__content {
  position: relative;
  z-index: calc(var(--z-overlay) + 1);
  text-align: center;
  max-width: 760px;
  padding: var(--space-6) var(--space-4);
  width: 100%;
}

/* --- Badges preuve sociale --- */
.hero-cruise__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-cruise__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}

/* --- Titre --- */
.hero-cruise__title {
  font-size: clamp(2rem, 5vw, var(--font-size-3xl));
  color: #fff;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* --- Sous-titre --- */
.hero-cruise__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-5);
  line-height: var(--line-height-base);
}

/* --- CTAs --- */
.hero-cruise__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .hero-cruise__ctas {
    flex-direction: row;
    justify-content: center;
  }
}
