* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f3f4f6;
  padding: 40px 0;
}

.cv-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

/* =======================
   COLONNE GAUCHE
======================= */
.left-column {
  width: 32%;
  background: #111827;
  color: #f9fafb;
  padding: 30px 25px;
}


.left-section-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 25px 0 12px;
  color: #9ca3af;
}

.extra-info p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.extra-info a {
  color: #fbbf24;
  text-decoration: none;
  font-size: 13px;
  word-break: break-all;
}

.extra-info a:hover {
  text-decoration: underline;
}

.skills-list,
.languages-list,
.hobbies-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.6;
}

.skills-list li,
.hobbies-list li {
  margin-bottom: 6px;
}

.skills-list li::before,
.hobbies-list li::before {
  content: "• ";
  color: #fbbf24;
  font-weight: bold;
}

.languages-list li {
  margin-bottom: 6px;
}

.language-level {
  font-size: 11px;
  color: #d1d5db;
}

/* =======================
   COLONNE DROITE
======================= */
.right-column {
  width: 68%;
  padding: 35px;
}

.name {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #111827;
}

.job-title {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  margin-top: 5px;
  text-transform: uppercase;
}

.summary {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-top: 18px;
}

/* Sections à droite */
.right-section {
  margin-top: 30px;
}

.right-section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.item {
  margin-bottom: 18px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.item-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.item-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.item-date {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
}

.item-description {
  font-size: 13px;
  color: #374151;
  margin-top: 6px;
}

.item-description ul {
  margin-left: 18px;
  margin-top: 4px;
}

.item-description li {
  margin-bottom: 3px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 800px) {
  .cv-wrapper {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  body {
    padding: 10px;
  }

  .right-column {
    padding: 25px;
  }
}
.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;      /* rend la photo ronde */
  overflow: hidden;        /* coupe ce qui dépasse */
  margin-left: 25px;
}

.profile-photo img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;        /* remplit sans se déformer */
  object-position: center;  /* centre ton visage */
}
