/* =========================
   RESET CSS de base
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY – police et couleurs globales
========================= */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #0a245e;
  background: #0a245e;
}

/* Liens cliquables */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   HEADER
========================= */
.header {
  background: #f4f4f4;
  padding: 40px 0;
  text-align: center;
}

.header__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Nom en grand */
.header__name {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Sous-titre */
.header__subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 20px;
}

/* Menu de navigation */
.nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav__item a {
  font-size: 1rem;
  color: #161616;
  transition: color 0.3s;
}

.nav__item a:hover {
  color: #0066cc;
}

/* =========================
   SECTIONS GÉNÉRALES
========================= */
.section {
  padding: 60px 0;
}

.section__inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* Titres */
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Paragraphes */
.section p {
  margin-bottom: 20px;
  color: #ffffff;
}

/* =========================
   COMPÉTENCES
========================= */
.skills__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills__item {
  background: #eaeaea;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #000;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0a245e;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.footer__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.9rem;
  text-align: center;
}



/* Style du footer */
.footer__inner {
  background-color: #0a245e;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  font-size: 0.9rem;
}