/* =============================================================
   HERO.CSS — Section héro page d'accueil
   Maison de Renaissance Elyria
============================================================= */

/*.hero {*/
/*  min-height: 100vh;*/
/*  padding-top: 72px; !* hauteur header *!*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  overflow: hidden;*/
/*}*/

/*!* -------------------------------------------------------------*/
/*   COLONNE GAUCHE — Texte*/
/*------------------------------------------------------------- *!*/
/*.hero__left {*/
/*  background: linear-gradient(160deg, #fdf8f4 0%, #f5e8df 60%, #fdf8f4 100%);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*  padding: 5rem 4rem 5rem 6rem;*/
/*  position: relative;*/
/*}*/

.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #fdf8f4 0%, #f5e8df 60%, #fdf8f4 100%);
  position: relative;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 760px;
}

.hero__tag {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: monterDoux 1.2s ease 0.2s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.35;
  color: var(--brun);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: monterDoux 1.4s ease 0.5s forwards;
}

.hero__separator {
  width: 50px;
  height: 1px;
  background: var(--taupe);
  margin: 0 0 1.8rem;
  opacity: 0;
  animation: elargir 1.5s ease 0.9s forwards;
}

.hero__subtitle {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--taupe-fonce);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: monterDoux 1.4s ease 1.0s forwards;
}

.hero__cta {
  align-self: center;
  opacity: 0;
  animation: monterDoux 1.4s ease 1.2s forwards;
}

.hero__opening {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  opacity: 0;
  animation: monterDoux 1.4s ease 1.4s forwards;
}

.hero__opening-line {
  width: 28px;
  height: 1px;
  background: var(--taupe);
  opacity: 0.5;
  flex-shrink: 0;
}

.hero__opening-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.7;
}

.hero__opening-date {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--taupe-fonce);
}

/* -------------------------------------------------------------
   COLONNE DROITE — Image carte
------------------------------------------------------------- */
.hero__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e0d6 0%, #e8d4c4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 248, 244, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Cadre décoratif doré */
.hero__frame {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(201, 160, 122, 0.22);
  z-index: 0;
  pointer-events: none;
}

.hero__frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 160, 122, 0.1);
}

.hero__image {
  width: 82%;
  max-width: 540px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 64px rgba(74, 55, 40, 0.2));
  opacity: 0;
  animation: monterDoux 1.6s ease 0.8s forwards;
}

/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  /*.hero__right {*/
  /*  display: none;*/
  /*}*/

  .hero__left {
    padding: 4rem 2rem 5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.9rem;
  }
}
