body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 15px 0;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}




body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("papiermaché.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #333;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: -1;
}


.cv-container {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: left;
}

/* Partie gauche sombre */
.left-section {
  background-color: #1f2937;
  color: white;
  width: 35%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.left-section h2 {
  border-bottom: 2px solid #4b5563;
  padding-bottom: 5px;
  margin-top: 25px;
  font-size: 18px;
  text-transform: uppercase;
}

.left-section ul {
  list-style: none;
  padding: 0;
}

.left-section ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.skills-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.software-icons img {
  width: 40px;
  height: 40px;
}

/* Photo de profil */
.profile-pic {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid white;
}

/* Partie droite claire */
.right-section {
  width: 65%;
  padding: 30px;
  box-sizing: border-box;
}

.right-section h1 {
  color: #1f2937;
  font-size: 26px;
  margin-top: 0;
  text-transform: uppercase;
}

.right-section h2 {
  color: #1f2937;
  border-bottom: 2px solid #1f2937;
  padding-bottom: 5px;
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 18px;
}

.right-section ul {
  list-style: none;
  padding-left: 0;
}

.right-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.right-section p {
  margin: 10px 0;
  font-size: 15px;
}

strong {
  color: #004aad;
}

/* Responsive */
@media (max-width: 768px) {
  .cv-container {
    flex-direction: column;
  }

  .left-section, .right-section {
    width: 100%;
  }
}
