/* ==========================================================================
   HÔTEL POA — Page "Bientôt disponible"
   Style : Premium / Luxe / Moderne / Élégant
   Palette : Bleu nuit #0D3B66 · Doré #D4AF37 · Blanc #FFFFFF · Gris clair #F5F5F5
   ========================================================================== */

/* ---- Réinitialisation de base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bleu-nuit: #0d3b66;
  --bleu-nuit-clair: #144a7c;
  --dore: #d4af37;
  --dore-clair: #f1d989;
  --blanc: #ffffff;
  --gris-clair: #f5f5f5;
  --ombre-douce: 0 10px 30px rgba(13, 59, 102, 0.35);
  --rayon-arrondi: 16px;
  --transition-douce: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--blanc);
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bleu-nuit);
}

/* ==========================================================================
   ARRIÈRE-PLAN PLEIN ÉCRAN
   ========================================================================== */

/* Image d'un hôtel de luxe en plein écran, fixe, avec léger zoom animé */
.background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(180deg, rgba(13, 59, 102, 0.25), rgba(13, 59, 102, 0.55)),
    url('poa.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: zoomLent 25s ease-in-out infinite alternate;
}

/* Voile sombre supplémentaire pour garantir la lisibilité du texte */
.overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(13, 59, 102, 0.55) 0%, rgba(6, 26, 46, 0.88) 100%);
  z-index: -1;
}

/* Animation : léger zoom continu de l'image de fond */
@keyframes zoomLent {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/* ==========================================================================
   CONTENEUR PRINCIPAL — centré verticalement et horizontalement
   ========================================================================== */

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 780px;
  margin: 0 auto;
}

/* ---- Logo ---- */
.logo-wrap {
  background: var(--blanc);
  border-radius: var(--rayon-arrondi);
  padding: 18px 26px;
  box-shadow: var(--ombre-douce);
  margin-bottom: 28px;
}

.logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Badge étoiles ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.stars {
  color: var(--dore);
  font-size: 1rem;
  letter-spacing: 2px;
}

.star-empty {
  opacity: 0.4;
}

.badge-text {
  color: var(--gris-clair);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* ---- Titre principal ---- */
.title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--blanc);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* Le mot-clé du titre reçoit l'effet de brillance dorée */
.shine {
  display: inline-block;
  background: linear-gradient(
    100deg,
    var(--dore) 20%,
    #fff6da 40%,
    var(--dore) 60%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: brillance 4.5s linear infinite;
}

/* Animation : brillance qui parcourt le texte doré */
@keyframes brillance {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ---- Texte descriptif ---- */
.description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gris-clair);
  max-width: 620px;
  margin-bottom: 30px;
}

/* ---- Séparateur élégant ---- */
.divider {
  width: 100%;
  max-width: 260px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dore), transparent);
  margin: 10px auto 32px;
  position: relative;
}

.divider-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--dore);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* ---- Liste des coordonnées ---- */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gris-clair);
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-list i {
  color: var(--dore);
  width: 18px;
  text-align: center;
}

/* ---- Bouton "Nous contacter" ---- */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 16px 44px;
  margin-bottom: 34px;
  border-radius: 50px;
  border: 1px solid var(--dore);
  background: linear-gradient(135deg, var(--dore) 0%, #b8892a 100%);
  color: var(--bleu-nuit);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: var(--transition-douce);
  overflow: hidden;
  animation: respiration 3.5s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #f1d989 0%, var(--dore) 100%);
}

.cta-button:focus-visible {
  outline: 2px solid var(--blanc);
  outline-offset: 3px;
}

/* Animation subtile : légère respiration du bouton pour attirer l'œil */
@keyframes respiration {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
  }
}

/* ---- Réseaux sociaux ---- */
.socials {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--blanc);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-douce);
}

.socials a:hover {
  background: var(--dore);
  border-color: var(--dore);
  color: var(--bleu-nuit);
  transform: translateY(-3px);
}

/* ---- Pied de page ---- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.65);
  padding-bottom: 26px;
}

/* ==========================================================================
   ANIMATIONS D'APPARITION (Fade In)
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  animation: apparition 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.75s; }
.delay-5 { animation-delay: 0.95s; }
.delay-6 { animation-delay: 1.15s; }

@keyframes apparition {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE — Desktop / Laptop / Tablette / Mobile
   ========================================================================== */

/* Tablette */
@media (max-width: 900px) {
  .container {
    padding: 48px 22px 32px;
  }

  .logo {
    width: 130px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    padding: 36px 18px 28px;
  }

  .logo-wrap {
    padding: 14px 20px;
    margin-bottom: 22px;
  }

  .logo {
    width: 110px;
  }

  .title {
    margin-bottom: 16px;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .contact-list {
    font-size: 0.85rem;
    gap: 12px;
    margin-bottom: 28px;
  }

  .cta-button {
    padding: 14px 34px;
    font-size: 0.85rem;
  }

  .socials a {
    width: 38px;
    height: 38px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .badge-text {
    display: none; /* on garde uniquement les étoiles sur les très petits écrans */
  }
}

/* Respect des préférences de réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
  .background,
  .shine,
  .cta-button,
  .fade-in {
    animation: none !important;
  }
}
