/* ----- Base ----- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #F0F0F0;
  color: #2a2a2a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* ----- Header ----- */
header {
  background: #F0F0F0;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 3px solid #014b70;
}

header h1 {
  margin: 0;
  font-size: 2.3rem;
  color: #014b70;
  letter-spacing: 0.5px;
}

header p {
  margin: 0.3rem 0 1rem 0;
  color: #555;
  font-style: italic;
}

nav a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: #014b70;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #7c2e35;
}

a {
  color: #014b70;
  text-decoration: none;
  font-weight: bold;
}

/* ----- Sections ----- */
section {
  margin: 3rem 0;
}

h2 {
  border-left: 5px solid #014b70;
  padding-left: 0.6rem;
  color: #014b70;
  font-size: 1.5rem;
}

/* ----- Profil ----- */
.profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ----- Publications ----- */
.publications-list li {
  margin-bottom: 1rem;
}

.publications-list a {
  color: #014b70;
  text-decoration: none;
}

.publications-list a:hover {
  text-decoration: underline;
}

/* ----- Bouton CV ----- */
.btn {
  display: inline-block;
  background: #014b70;
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
  background: #7c2e35;
}

/* ----- Footer ----- */
footer {
  background: #F0F0F0;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #555;
  margin-top: 3rem;
  border-top: 2px solid #014b70;
}
