#hero-video {
  width: 100%;
  height: calc(20vh - var(--navbar-height));
  object-fit: cover;
  display: block;
}

.accueil-intro {
  max-width: 700px;
  margin: 5rem auto;
  text-align: center;
  padding: 0 2rem;
}

.accueil-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.accueil-intro p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.accueil-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
}

.accueil-intro h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2.3px;
  background: #c9a96e;
  animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {
  0%   { width: 60px; height: 2.3px; }
  50%  { width: 81px; height: 2.3px; }
  100% { width: 60px; height: 2.3px; }
}






.accueil-coffret {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.accueil-coffret-image {
  flex: 1;
}

.accueil-coffret-image img {
  width: 100%;
  object-fit: cover;
}

.accueil-coffret-text {
  flex: 1;
}

.accueil-coffret-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.accueil-coffret-text h2,
.parfum-section-text h2 {
  display: inline-block;
  position: relative;
  text-decoration: none;
}


.accueil-coffret-text h2::after,
.parfum-section-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2.3px;
  background: #c9a96e;
  animation: lineGrow 2s ease-in-out infinite;
}

.accueil-coffret-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

.accueil-lien {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: underline;
  letter-spacing: 0.05em;
}

.accueil-lien:hover {
  color: #c9a96e;
}

@media (max-width: 700px) {
  .accueil-coffret {
    flex-direction: column;
    gap: 2rem;
  }
}

.parfum-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
  padding-top: 2%;
}

.parfum-section-image {
  flex: 1;
}

.parfum-section-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.parfum-section-text {
  flex: 1;
}

.parfum-section-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.parfum-section-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

.accueil-coffret-image img,
.parfum-section-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  background: #fff;
}

@media (max-width: 700px) {
    .accueil-intro {
    margin: 3rem auto 4.5rem;
  }

  .accueil-coffret {
    margin: 1.5rem auto 3rem;
    gap: 1rem;
  }

  .accueil-coffret-image img {
    height: 320px;
    margin-bottom: 1rem;
  }

  .accueil-coffret-text h2 {
    margin-bottom: 1rem;
  }
    
  .parfum-section {
    flex-direction: column;
    gap: 2rem;
    margin: 4.5rem auto;
  }
  .parfum-section-text {
    order: 2;
  }
  .parfum-section-image {
    order: 1;
  }
}


/* ===== QHD 2560px ===== */
@media (min-width: 2560px) {
  .accueil-intro {
    max-width: 1100px;
  }
  .accueil-intro h2 {
    font-size: 3rem;
  }
  .accueil-intro p {
    font-size: 18px;
  }

  .accueil-coffret,
  .parfum-section {
    max-width: 2200px;
    gap: 6rem;
    margin: 7rem auto;
  }

  .accueil-coffret-text h2,
  .parfum-section-text h2 {
    font-size: 3rem;
  }

  .accueil-coffret-text p,
  .parfum-section-text p {
    font-size: 18px;
  }

  .accueil-lien {
    font-size: 18px;
  }

  .accueil-coffret-image img,
  .parfum-section-image img {
    height: 700px;
    max-height: 700px; /* ← AJOUT */
  }
}

/* ===== 4K 3840px ===== */
@media (min-width: 3840px) {
  .accueil-intro {
    max-width: 1800px;
    margin: 8rem auto;
  }
  .accueil-intro h2 {
    font-size: 4.5rem;
  }
  .accueil-intro p {
    font-size: 26px;
  }

  .accueil-coffret,
  .parfum-section {
    max-width: 3400px;
    gap: 10rem;
    margin: 10rem auto;
    padding: 0 4rem;
  }

  .accueil-coffret-text h2,
  .parfum-section-text h2 {
    font-size: 4.5rem;
    margin-bottom: 2.5rem;
  }

  .accueil-coffret-text p,
  .parfum-section-text p {
    font-size: 26px;
    line-height: 2;
    margin-bottom: 3rem;
  }

  .accueil-lien {
    font-size: 26px;
  }

  .accueil-coffret-image img,
  .parfum-section-image img {
    height: 1000px;
    max-height: 1000px; /* ← AJOUT */
  }
}