/**
 * TYPOGRAPHY.CSS - Typographie de Base
 * Agence Archimède - Architecture CSS Modulaire
 */

/* ===== TYPOGRAPHIE DE BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Conteneur principal */
.homepage {
  padding-top: 80px; /* Compense le header fixe */
}

/* Titres de sections */
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1.125rem;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center !important;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 480px) {
  .section__title {
    font-size: 1.8rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
}