.support-hero {
    position: relative;                /* Parent relatif pour bg absolu */
    min-height: 60vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 3rem 2rem;
    overflow: hidden;
    background: none;
}


/* Image de fond */
.support-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: heroImageZoom 1.8s ease-out forwards;
}

@keyframes heroImageZoom {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contenu hero centré */
.support-hero .hero-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}



/* TEXTE HERO / BANNIÈRE */
.support-hero h1,
.support-hero p,
.support-hero em {
    color: #ffffff; /* texte blanc */
    text-shadow: 0 2px 8px rgba(0,0,0,0.4); /* optionnel pour lisibilité sur l'image */
}



/* ================================== */
/* SECTION RESSOURCES ÉTUDIANT */
/* ================================== */
.support-content {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.support-content .container {
  max-width: 1100px;
  margin: 0 auto;
}

.support-content h2 {
  font-size: 2.4rem;
  color: #0a2540;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'IBM Plex Serif', serif;
}

.support-content > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* ================================== */
/* LISTE DES RESSOURCES */
/* ================================== */
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.support-list li {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Icônes */
.support-list i {
  width: 32px;
  height: 32px;
  color: #00aaff;
}

/* Texte */
.support-list strong {
  color: #0a2540;
  font-size: 1.1rem;
}

.support-list li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
}

/* Liens de téléchargement */
.support-list a {
  margin-top: auto;
  align-self: flex-start;
  background: #0a2540;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.support-list a:hover {
  background: #00aaff;
  transform: translateY(-2px);
}

/* ================================== */
/* NOTE RGPD */
/* ================================== */
.note-rgpd {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================== */
/* RESPONSIVE */
/* ================================== */
@media (max-width: 768px) {
  .support-content h2 {
    font-size: 2rem;
  }

  .support-content > .container > p {
    font-size: 1rem;
  }
}


/* Boutons */
.btn {
  background: #8d8d8d;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Effet hover sur bouton */
.btn:hover {
  background: #0088cc;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.btn-secondary.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none; /* empêche le clic */
    text-decoration: none;
}
