/* Style général */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #1e293b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* En-tête */
header {
  background-color: #0f172a;
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin: 0;
  font-size: 2em;
}

/* Contenu principal */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Sections */
section {
  background-color: white;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

section h2 {
  color: #0f172a;
  font-size: 1.5em;
  margin-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 5px;
}

/* Listes */
ul {
  list-style: disc;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Grille de compétences */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.skills-grid div {
  flex: 1;
  min-width: 250px;
}

/* Bouton de téléchargement */
.btn {
  display: inline-block;
  background-color: #0f172a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #1e293b;
}

/* Menu burger */
.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  color: white;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1001;
}

/* Menu latéral */
#side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #0f172a;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

#side-menu ul {
  list-style: none;
  padding: 0;
}

#side-menu ul li {
  padding: 15px 25px;
  border-bottom: 1px solid #1e293b;
}

#side-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

#side-menu ul li a:hover {
  text-decoration: underline;
}
footer {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #94a3b8;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}