@font-face {
  font-family: 'TAModernTimes';
  src: url('../fonts/TA-ModernTimes.otf') format('opentype');
}
@font-face {
  font-family: 'RokuRounded';
  src: url('../fonts/RokuRounded-Regular.otf') format('opentype');
}

:root {
  --text-color: #111;
  --bg-color: #ffffff;
  --accent: #000;
  --accent-hover: #333;
  --font-title: 'RokuRounded', sans-serif;
  --font-body: 'TAModernTimes', serif;
  --title-size: 42px;
  --subtitle-size: 28px;
  --body-size: 20px;
  --image-size-desktop: 220px;
  --image-size-mobile: 130px;
}

body.apropos-page {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  margin: 0;
  padding-top: 100px;
}

.apropos-content {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem 3rem;
}

.apropos-panel {
  background: #c6c6c6;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: center;
}

.apropos-title {
  font-family: var(--font-title);
  font-size: var(--title-size);
  margin-bottom: 1rem;
  color: var(--accent);
}

.apropos-subtitle {
  font-family: var(--font-title);
  font-size: var(--subtitle-size);
  margin-top: 2.5rem;
  color: var(--accent);
}

.apropos-text {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.7;
  margin: 1rem 0 2rem;
  text-align: center;
  hyphens: auto;
  word-break: break-word;
  white-space: normal;
}

.apropos-text a {
  color: var(--accent);
  text-decoration: underline;
}
.apropos-text a:hover {
  color: var(--accent-hover);
}

.apropos-image {
  display: block;
  width: var(--image-size-desktop);
  height: var(--image-size-desktop);
  border-radius: 50%;
  object-fit: cover;
  margin: 2rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.apropos-cta {
  margin-top: 3rem;
}
.apropos-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.apropos-btn:hover {
  background: var(--accent-hover);
}

/* Responsive tablette */
@media (max-width: 1024px) {
  .apropos-title { font-size: 34px; }
  .apropos-subtitle { font-size: 24px; }
  .apropos-text { font-size: 18px; }
  .apropos-image {
    width: 180px;
    height: 180px;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .apropos-title { font-size: 26px; }
  .apropos-subtitle { font-size: 20px; }
  .apropos-text {
    font-size: 16px;
    text-align: justify;
  }
  .apropos-image {
    width: var(--image-size-mobile);
    height: var(--image-size-mobile);
  }
  .apropos-btn {
    padding: 12px 24px;
    font-size: 18px;
  }
}