/* Rectangle rose avec arrondis */
.cv-section {
  background-color: #F2D6D0; /* rose */
  border-radius: 20px;       /* arrondis */
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  margin: 40px auto;         /* centré horizontalement */
  max-width: 800px;          /* largeur max */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* léger ombrage */
}

/* Container pour aligner l'image et le lien */
.cv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Image */
.cv-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Lien CV */
.cv-link a {
  display: inline-block;
  padding: 15px 25px;
  background-color: #ffffff;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;

}

/* Hover sur le lien */
.cv-link a:hover {
  background-color: #d3d3d3;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .cv-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cv-image img {
    max-width: 100%;
  }
}
