/* styles pour la page "Bientôt ici" — ô148A */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --bg-color: #f5f0eb;
  --text-color: #2c2c2c;
  --accent-green: #7a9e7e;
  --accent-gold: #c8a97e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Lato', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo-wrapper {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 2s ease-in forwards;
}

.logo-wrapper svg {
  width: 400px;
  height: auto;
  max-width: 90%;
}

/* On force la couleur noire du logo en accord avec le SVG initial */
.logo-wrapper svg path,
.logo-wrapper svg g {
  fill: var(--text-color);
  transition: fill 0.3s ease;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 1.5s;
}

.hosts {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 2.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .logo-wrapper svg {
    width: 280px;
  }
  .tagline {
    font-size: 1.4rem;
  }
  .hosts {
    font-size: 1rem;
  }
}
