/* ── Typos locales ── */
@font-face {
  font-family: "Symphony Pro";
  src: url("typo/symphony-pro-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #fff9ec;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 1320px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Titre principal */
.title {
  font-family: "Symphony Pro", cursive;
  font-size: 150px;
  font-weight: normal;
  font-synthesis: none;
  color: #301c0d;
  text-align: center;
  line-height: 0.75;
  animation: fadeUp 1.2s ease both;
}
/* Texte de description */
.description {
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 300;
  color: #301c0d;
  text-align: center;
  max-width: 680px;
  letter-spacing: -5;
  animation: fadeUp 1.4s ease both;
}

/* Bouton ENTRER */
.enter-wrapper {
  position: fixed;
  bottom: 50px;
  right: 50px;
  animation: fadeUp 1.6s ease both;
}

.enter-link {
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #301c0d;
  text-decoration: none;
  display: flex;
  align-items: bottom;
  gap: 10px;
  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.enter-link:hover {
  gap: 18px;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
