.container_accueil {
  background-image: url("../images/image_accueil.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-container {
  position: absolute;
  top: 38px;
  left: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.7s ease-out 0.1s forwards;
}

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

.text-logo-blanc {
  font-size: 0.9rem;
  color: rgb(255, 255, 255);
  font-family: "Antarctica", "Arial", sans-serif;
  margin: 0;
}

.container_accueil::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 100px;
}

.image-logo-blanc {
  width: 20%;
  height: 20%;
}

.logo-img-blanc {
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin-bottom: 4px;
}

.citation_container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}

.citation {
  font-size: 40px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  font-family: "Antarctica", "Arial", sans-serif;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Règles anti-agrandissement pour desktop uniquement */
@media (min-width: 769px) {
  .citation {
    font-size: 40px !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
  }

  .text-logo-blanc {
    font-size: 0.9rem !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  .nav-btn {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  .container_accueil {
    min-height: 100vh !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .content {
    min-height: 100vh !important;
    padding-bottom: 100px !important;
  }

  .nav-buttons {
    top: 75% !important;
    gap: 200px !important;
  }
}

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

.nav-btn {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 2px;
  color: white;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.nav-buttons {
  position: absolute;
  top: 75%;
  display: flex;
  justify-content: center;
  gap: 200px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Responsive */
/* TABLETTE */
@media (max-width: 768px) {
  .logo-container {
    top: 20px;
    left: 20px;
  }

  .text-logo-blanc {
    font-size: 0.7rem;
  }

  .logo-img-blanc {
    width: 12px;
    height: 12px;
  }

  .citation_container {
    top: 30%;
  }

  .citation {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 20px;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    top: 55%;
  }

  .nav-btn {
    width: 300px;
    margin: 5px 0;
    padding: 18px 30px;
    font-size: 17px;
  }
}
/* SMARTPHONE */
@media (max-width: 480px) {
  .container_accueil {
    min-height: 650px;
  }

  .citation_container {
    top: 30%;
  }

  .citation {
    font-size: 20px;
    padding: 0 15px;
  }

  .nav-buttons {
    top: 45%;
    gap: 12px;
  }

  .nav-btn {
    width: 280px;
    padding: 16px 28px;
    font-size: 16px;
  }

  .logo-container {
    top: -32px;
    left: 30px;
  }

  .content {
    min-height: 650px;
    padding-bottom: 60px;
  }
}
