body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  text-align: center;
  background-image: radial-gradient(circle at center, #fdabab 0%, #111 100%);
}

h1 {
  margin-bottom: 60px;
  font-size: 4vw;
  margin-top: 10vh;
}

#countdown {
  display: flex;
  gap: 20px;
}

.time-box {
  background: #750202;
  padding: 20px;
  border-radius: 10px;
  min-width: 80px;
}

.number {
  font-size: 5vw;
  font-weight: bold;
}

.label {
  font-size: 1.5vw;
  opacity: 0.7;
}

/* Responsive mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 8vw;
  }

  .number {
    font-size: 10vw;
  }

  .label {
    font-size: 3vw;
  }

  #countdown {
    gap: 10px;
  }

  .time-box {
    padding: 10px;
    min-width: 60px;
  }
}


/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 20px 15px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #333;
  margin-top: auto;
}

/* Texte */
footer p {
  margin: 8px 0;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}

/* Tablette et desktop */
@media (min-width: 768px) {
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
  }

  .footer-text {
    margin: 0;
    font-size: 1rem;
    text-align: left;
  }

  /* centre le texte du milieu */
  footer p:nth-child(2) {
    text-align: center;
  }

  /* aligne le dernier à droite */
  footer p:last-child {
    text-align: right;
  }
}

/* Grands écrans */
@media (min-width: 1200px) {
  footer {
    padding: 25px 80px;
  }

  footer p {
    font-size: 1.05rem;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  footer p {
    font-size: 0.85rem;
  }
}

  .logo_jc{
    width: 50vh;
    height: auto;
  }