/* PORTFOLIO CNED — SECTION PRÉSENTATION */

/* Section présentation - fond bleu - grande page aérée */
.section-presentation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bleu);
  color: var(--color-text-clair);
  padding: 8rem 2rem;
}

/* Container pour centrage */
.presentation-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

/* Photo d'identité - petite et centrée */
.presentation-photo {
  width: 180px;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Texte de présentation - petit et centré */
.presentation-text {
  width: 100%;
  max-width: 850px;
  text-align: center;
  padding: 0 3rem;
}

.presentation-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.presentation-text p {
  font-family: var(--font-principale);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-clair);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Bouton CV — même style que les autres CTA de la page */
.btn-cv {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--color-text-clair);
  border: 1px solid var(--color-text-clair);
  font-family: var(--font-principale);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-cv:hover {
  background: var(--color-text-clair);
  color: var(--color-bleu);
}

/* Responsive */
@media (max-width: 768px) {
  .section-presentation {
    padding: 6rem 1.5rem;
  }
  
  .presentation-container {
    gap: 2.5rem;
  }
  
  .presentation-photo {
    width: 150px;
    height: 195px;
  }
  
  .presentation-text {
    max-width: 90%;
    padding: 0 1.5rem;
  }
  
  .presentation-text h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .presentation-text p {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .section-presentation {
    padding: 5rem 1rem;
  }
  
  .presentation-container {
    gap: 2rem;
  }
  
  .presentation-photo {
    width: 130px;
    height: 170px;
  }
  
  .presentation-text {
    padding: 0 1rem;
  }
  
  .presentation-text h2 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }
  
  .presentation-text p {
    font-size: 12px;
    line-height: 1.7;
  }
}
