body {
    font-family: Arial, sans-serif;
    background-color: #fff5f8;
    color: #5c3a3a;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffe0eb;
    padding: 2em 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
}

#compte-a-rebours {
  text-align: center;
  background: #ffe4ec;
  padding: 50px 20px;
  border-top: 4px dashed #d63384;
}

#compte-a-rebours h2 {
  color: #d63384;
  font-size: 2em;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Courier New', monospace;
}

.countdown div {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 80px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.countdown div:hover {
  transform: scale(1.05);
}

.countdown span {
  display: block;
  font-size: 2.5em;
  color: #d63384;
  animation: fadeIn 0.7s ease-in-out;
}

.countdown small {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #888;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}




.image-full {
  width: 100%;
  height: auto;
  max-height: 500px; /* Ajuste à la hauteur que tu préfères */
  object-fit: cover;
  display: block;
}


form {
    background: #fff;
    padding: 2em;
    max-width: 400px;
    margin: 2em auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, select, button {
    display: block;
    width: 90%;
    margin: 1em auto;
    padding: 0.7em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #e88aaa;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #d97598;
}
a {
  text-decoration: none;
  color: #d63384;
}

a:hover {
  color: #a61e58;
  text-decoration: underline;
}
nav {
  display: flex;
  justify-content: center;   /* Centrage du menu */
  gap: 20px;                 /* Espace horizontal entre les éléments */
  padding: 20px 0;           /* Espace au-dessus et en dessous */
}
#story {
  padding: 40px;
  background-color: #ffe6f0;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 800px;
  text-align: center;
}
.titre-geant {
  font-family: 'Great Vibes', cursive;
  font-size: 90px;
  color: #a0526d;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}
nav a {
  font-weight: bold;
}
nav a {
  font-weight: bold;
  color: #000; /* ou #d63384 */
  text-decoration: none;
  margin: 0 10px;
}

nav {
  display: flex;
  flex-wrap: wrap; /* pour éviter les débordements sur petits écrans */
  justify-content: center;
  gap: 10px;
  background-color: #fff; /* ou la couleur de ton choix */
  padding: 10px;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 14px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #ddd;
}
