html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Style pour les champs en mode readOnly */
input[readonly],
textarea[readonly] {
    background-color: #f5f5f5; /* Couleur de fond grisée */
    border: 1px solid #ddd; /* Bordure grisée */
    cursor: not-allowed; /* Curseur non autorisé */
}

.profile-photo {
  width: 7rem; 
  height: 7rem; 
  object-fit: cover; 
  border-radius: 50%; 
  flex-shrink: 0; 
}


.company-photo {
  width: 65px; 
  height: 65px; 
  object-fit: cover;
}

.container {
  padding-top: 22px;
}


/* expérience */
.experiences-list, .projects-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

.experiences-list li, .formations-list li, .projects-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  /* line-height: 1.6; */
}

.experiences-list li:last-child, .projects-list li:last-child {
  border-bottom: none;
}

.experiences-list .job-title, .formations-list .formation-title, .projects-list .project-title {
  font-weight: bold;
  color: #262626;
  font-size: 1.1rem;
}

.experiences-list .company, .formations-list .institution {
  /* font-weight: bold; */
  color: #404040;
}

.experiences-list .date, .formation-list .date {
  color: #999;
  margin-left: 5px;
  font-size: 0.9rem;
}

.experiences-list .description, .formations-list .description {
  color: #333;
  margin-left: 80px;
}

/* formation */
.formations-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

.formations-list li, .competences-list li {
  border-bottom: 1px solid #e0e0e0;
  /* padding: 15px 0; */
  line-height: 1.6;
}

.formations-list li:last-child, .competences-list li:last-child {
  border-bottom: none;
}

.formations-list .formation-title {
  font-weight: bold;
  color: #262626;
  font-size: 1rem;
}

.formations-list .institution {
  color: #404040;
}

.formations-list .date {
  color: #999;
  margin-left: 5px;
  font-size: 0.9rem;
}

.formations-list .description {
  color: #333;
  margin: 5px;
  padding-left: 10px;
}


/* compétence */

.competences-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 15px 0;
  list-style: none;

  max-width: 600px; /* Largeur maximale */
  margin: 0 auto; /* Centre la liste horizontalement */
}

.competence-tag {
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.95rem;
  color: white;
  white-space: nowrap
}

.competences-list .competence-name {
  font-weight: bold;
  color: #262626;
  font-size: 1rem;
}

.competences-list .competence-level {
  color: #999;
  margin-left: 5px;
  font-size: 0.9rem;
}

/* Wainting page */
/* Centrer tout le contenu */
.waiting-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Espacement pour le titre */
.waiting-title {
  font-weight: bold;
  margin-top: -95px; /* Ajuste la hauteur du titre pour être plus proche de l'animation */
  font-size: 2rem;
}

/* Style de l'animation Lottie */
.animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Taille responsive de l'animation */
.responsive-lottie {
  width: 70vw;
  height: 70vw;
  max-width: 400px;
  max-height: 400px;
  min-width: 150px;
  min-height: 150px;
}

.experience-item {
  /* margin-bottom: 1.5rem; */
}

.job-title , .formation-title{
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  /* margin-bottom: 0.25rem; */
}

.company, .institution{
  display: block;
  /* margin-bottom: 0.25rem; */
}

.date-duration {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.75rem;
}

.description {
  margin: 0;
  line-height: 1.4;
}

.about {
  max-width: 600px;
}

.badge {
  color: white !important; 
  text-decoration: none; 
}
.badge a {
  color: inherit; 
  text-decoration: none; 
  pointer-events: none; 
}
