/* ==========================================================
   Barthélemy Rose — Page d'attente
   ========================================================== */

:root {
  --white: #ffffff;
  --ink: #1c1a19;
  --rose: #c98b93;
  --rose-dark: #a96a72;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--white);
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 16, 0.12) 0%, rgba(20, 17, 16, 0.22) 55%, rgba(20, 17, 16, 0.32) 100%);
}

.content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.logo {
  width: min(350px, 55vw);
  height: auto;
  margin-bottom: 0rem;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.28));
}

.brand {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 2.6rem;
  color: var(--white);
}

.brand span {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.85;
}

h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1.6rem;
}

.message {
  font-size: 1.2rem;
  line-height: 1.35;
  max-width: 480px;
  margin: 0 0 2.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.social-links a:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .content { padding: 1.6rem; }
  .logo { width: min(200px, 68vw); margin-bottom: 1.2rem; }
  .brand { font-size: 1rem; margin-bottom: 2rem; }
  h1 { font-size: 1.7rem; }
  .message { font-size: 0.92rem; margin-bottom: 2.2rem; }
  .btn { padding: 0.85rem 2rem; font-size: 0.72rem; }
  .social-links { margin-top: 2.2rem; }
  .social-links a { width: 36px; height: 36px; }
}
