.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/home-hero.jpg') center/cover;
  opacity: 0.65;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,9,0.15), rgba(8,12,9,0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #c7d3c2;
  margin-bottom: 20px;

  white-space: nowrap;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(199, 211, 194, 0.8);
  max-width: 650px;
  margin: 0 auto 30px;
}

.button {
  display: inline-block;
  border: 1px solid rgba(199,211,194,0.35);
  padding: 14px 34px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s ease;

  background: transparent;
  color: #c7d3c2;

  position: relative;
  overflow: hidden;
}

.button {
  display: inline-block;
  position: relative;
  overflow: hidden;

  padding: 16px 40px;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: #e0e9dd;
  background: rgba(11, 18, 13, 0.25);

  border: 1px solid rgba(199, 211, 194, 0.45);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: all 0.35s ease;

  /* meilleure lisibilité sur fond photo */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(199,211,194,0.12);
  transition: all 0.55s ease;
}

.button:hover::before {
  left: 0;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(199,211,194,0.75);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  background: rgba(11, 18, 13, 0.35);
}

/* HERO STRIP */
.hero-strip {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;

  opacity: 0.82;
  filter: blur(10px);
}

.strip-track {
  display: flex;
  align-items: stretch;

  width: max-content;

  transform: rotate(10deg);
  transform-origin: center;

  margin-left: -60px;
  margin-top: 0px;
}

.strip-track img {
  width: 200px;
  height: 760px;

  object-fit: cover;
  flex: 0 0 auto;

  margin: 0;
  padding: 0;

  border-radius: 0;

  opacity: 0.85;
  filter: contrast(1.05) saturate(0.9);

  transform: none;
}

/* Images 1 et 2 = taille A1 */
.strip-track img:nth-child(1),
.strip-track img:nth-child(2) {
  height: 920px;
}

/* Image 3 = taille A2 */
.strip-track img:nth-child(3) {
  height: 900px; 
}

/* Images 4,5,6 = taille par défaut */
.strip-track img:nth-child(4) {
  height: 900px; 
}
.strip-track img:nth-child(5) {
  height: 900px; 
}

/* Image 7 = taille A3 */
.strip-track img:nth-child(7) {
  height: 780px;
  transform: translateY(-40px);
}

/* Image 8 = taille A4 */
.strip-track img:nth-child(8) {
  height: 780px;
  transform: translateY(-80px);
}

/* Images 9 et 10 = taille A5 */
.strip-track img:nth-child(9),
.strip-track img:nth-child(10) {
  height: 900px;
  transform: translateY(-120px);
}

/* RESPONSIVE HERO TITLE */
@media (max-width: 768px) {
  .hero-content h1 {
    white-space: normal;
  }
}