/* Police */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f6e8; /* beige clair */
  color: #333;
}

/* Section Hero */
.hero {
  padding: 80px 20px;
}

/* Image profil */
.profil-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 50%;
  object-position: top;     /* centre en haut */
}

/* Bouton marron (un seul bloc, sans doublon) */
.btn-brown {
  background-color: #6f3d1f;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
}

.btn-brown:hover,
.btn-brown:focus {
  background-color: #5a2f18;
  color: #fff;
}

/* Utilitaire : fond marron */
.bg-brown {
  background-color: #6f3d1f !important;
  color: #fff;
}

/* Bouton beige personnalisé */
.btn-beige {
  background-color: #f5f5dc;  /* beige clair */
  color: #000; /* texte noir */
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
}

.btn-beige:hover,
.btn-beige:focus {
  background-color: #e0e0c1; /* beige un peu plus foncé au survol */
  color: #000;
}
/* Section Projets */
#projets {
  background-color: #f9f6e8; /* beige clair comme ton thème */
}

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}
/* ===== PAGE A PROPOS ===== */

/* Titre de la section */
#apropos-title {
  text-align: center;
  font-weight: 700;
  margin: 50px 0 30px;
  color: #3b2f2f; /* marron foncé */
}

/* Section Mon parcours */
.parcours-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  background-color: #f5f0e6; /* beige clair */
  padding: 30px;
  border-radius: 10px;
}

.parcours-text {
  flex: 1;
  min-width: 280px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.parcours-img {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.parcours-img img {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Section Formations */
.formations {
  margin: 40px 0;
  text-align: center;
}

.formations h2 {
  font-weight: 600;
  margin-bottom: 30px;
  color: #3b2f2f;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.formation-card {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.formation-card:hover {
  background-color: #d9c9a3; /* beige plus soutenu au survol */
  transform: translateY(-5px);
}

/* FOOTER */
.bg-beige {
  background-color: #f5f0e6;
}

.bg-brown {
  background-color: #3b2f2f;
}

/* Responsive */
@media (max-width: 768px) {
  .parcours-section {
    flex-direction: column;
    text-align: center;
  }

  .parcours-text {
    margin-bottom: 20px;
  }

  .formations-grid {
    grid-template-columns: 1fr;
  }

  .formation-card {
    max-width: 100%;
  }
}
/* Police */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f6e8; /* beige clair */
  color: #333;}
  

.btn-beige:hover,
.btn-beige:focus {
  background-color: #e0e0c1; /* beige un peu plus foncé au survol */
  color: #000;
}
/* ===== BOUTON CONTACTEZ-MOI ===== */
.btn-contact {
  background-color: #6f3d1f; /* marron foncé */
  color: #fff; /* texte blanc */
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.btn-contact:hover,
.btn-contact:focus {
  background-color: #5a2f18; /* marron plus foncé au survol */
  color: #fff;
  transform: translateY(-2px); /* léger effet “pop” */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Police */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f6e8; /* beige clair */
  color: #333;}
  /* ===== FOOTER ===== */
.footer-top {
  background-color: #f5f0e6; /* beige clair */
  color: #333;
  padding: 40px 0;
}

.footer-bottom {
  background-color: #6f3d1f; /* marron foncé */
  color: #fff;
  text-align: center;
  padding: 15px 0;
}


#contact {
  scroll-margin-top: 90px;
  padding-top: 30px; /* pour laisser respirer le haut */
}
.img{
    width: 20PX;
    height: auto;
}


.skill-card img {
    width: 50px;       /* largeur identique pour toutes les icônes */
    height: 50px;      /* hauteur identique pour toutes les icônes */
    object-fit: contain; /* garde les proportions sans déformation */
}

