.btn-etudiant {
  background-color: #009FE3;        /* Bleu principal */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease-in-out; /* Animations fluides */
  
  padding: 0.4rem 0.8rem;         /* Resserre verticalement et horizontalement */
  line-height: 1.3;                 /* Texte moins étiré verticalement */
  font-size: 1.25rem;                  /* Ajustable selon besoin */
  white-space: normal;              /* Permet de passer sur plusieurs lignes */
  word-break: break-word;           /* Coupe les mots trop longs si besoin */
  text-align: center;               /* Centrage du texte */
}

/* Hover (survol) */
.btn-etudiant:hover {
  background-color: #0c69a5;        /* Bleu plus foncé */
  color: #ffffff;
  transform: translateY(-2px);      /* Petit effet de surélévation */
}

/* Focus (accessibilité, navigation clavier) */
.btn-etudiant:focus,
.btn-etudiant:focus-visible {
  outline: 3px solid #89aeea;       /* Anneau bleu clair */
  outline-offset: 2px;
}

/* Active (au moment du clic) */
.btn-etudiant:active {
  background-color: #1d3a68 !important;
  transform: translateY(0);         /* Annule la surélévation */
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.25);
}

/* Disabled */
.btn-etudiant:disabled,
.btn-etudiant.disabled {
  background-color: #94a9c9;
  color: #e4e4e4;
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
 
.btn-etudiant2 {
  background-color:#004876;        /* Bleu principal */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease-in-out; /* Animations fluides */
  
  padding: 0.4rem 0.8rem;         /* Resserre verticalement et horizontalement */
  line-height: 1.3;                 /* Texte moins étiré verticalement */
  font-size: 1.25rem;                  /* Ajustable selon besoin */
  white-space: normal;              /* Permet de passer sur plusieurs lignes */
  word-break: break-word;           /* Coupe les mots trop longs si besoin */
  text-align: center;               /* Centrage du texte */
}


/* Hover (survol) */
.btn-etudiant2:hover {
  background-color: #0c69a5;        /* Bleu plus foncé */
  color: #ffffff;
  transform: translateY(-2px);      /* Petit effet de surélévation */
}

/* Focus (accessibilité, navigation clavier) */
.btn-etudiant2:focus,
.btn-etudiant2:focus-visible {
  outline: 3px solid #89aeea;       /* Anneau bleu clair */
  outline-offset: 2px;
}

/* Active (au moment du clic) */
.btn-etudiant2:active {
  background-color: #1d3a68 !important;
  transform: translateY(0);         /* Annule la surélévation */
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.25);
}

/* Disabled */
.btn-etudiant2:disabled,
.btn-etudiant2.disabled {
  background-color: #94a9c9;
  color: #e4e4e4;
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}


.titre-profil {
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.3;
    color: #898B96;           /* bleu foncé élégant */
    margin-top: 1.5rem;         /* espace au-dessus */
    margin-bottom: 1.5rem;      /* espace en-dessous */
  }



 .titre-jumbotron {
    font-style: italic;             /* texte en italique */
    font-weight: 300;               /* texte plus fin */
    font-size: 2.5rem;              /* taille ajustable */
    padding-left: 1.5em;
	  padding-right: 1.5em; 
    position: relative;             /* pour positionner les guillemets */
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
/* Guillemets */
.titre-jumbotron::before {
  content: "“";             /* guillemet ouvrant */
  font-size: 5rem;
  position: absolute;
  top: 0;                    /* aligne avec le texte */
  left: 0;

  line-height: 1;            /* évite l’espacement bizarre */
  pointer-events: none;      /* ne bloque pas le clic sur le texte */
}


  .titre-jumbotron::after {
  content: "”";             /* guillemet fermant */
  font-size: 5rem;
  position: absolute;
  bottom: 0;                /* aligne avec la ligne de texte */
  right: 0;

  line-height: 1;           /* évite l’espacement bizarre */
  pointer-events: none;     /* ne bloque pas la sélection/clic */
}
.user-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}


.titre-jumbotron2 {
  position: relative;
  display: inline-block;     /* pour que les guillemets suivent la largeur du texte */
  padding-left: 1.2em;       /* espace pour le guillemet ouvrant */
  padding-right: 1.2em;      /* espace pour le guillemet fermant */
  font-size: 2rem;            /* taille du texte principale */
  line-height: 1.2;
	font-style: italic;
}

/* Guillemets ouvrant */
.titre-jumbotron2::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5em;          /* proportionnel au texte */
  line-height: 1;
  pointer-events: none;
	
}

/* Guillemets fermant */
.titre-jumbotron2::after {
  content: "”";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.5em;          /* proportionnel au texte */
  line-height: 1;
  pointer-events: none;

	
}

/* Ajustement responsive mobile */
@media (max-width: 576px) {
  .titre-jumbotron {
    font-size: 1.5rem;        /* texte plus petit sur mobile */
    padding-left: 1em;
    padding-right: 1em;
  }
  .titre-jumbotron::before,
  .titre-jumbotron::after {
    font-size: 1.2em;         /* guillemets proportionnels */
  }
	
	 .titre-jumbotron2 {
    font-size: 1.5rem;        /* texte plus petit sur mobile */
    padding-left: 1em;
    padding-right: 1em;
  }
  .titre-jumbotron2::before,
  .titre-jumbotron2::after {
    font-size: 1.2em;         /* guillemets proportionnels */
  }
}
}





@media (min-width: 768px) {
  .user-img {
    width: 140px;
    height: 140px;
  }
	
}
@media (max-width: 576px) {
  .titre-jumbotron::after {
    font-size: 3rem;        /* plus petit sur mobile */
  }
  .titre-jumbotron {
    padding-left: 1.2em;    /* espace guillemet ouvrant mobile */
    padding-right: 1.2em;   /* espace guillemet fermant mobile */
  }
	
}