/* 
CSS GENERALE
*/
:root {
    --bg-color: #f6f0e3;
    --text-color: #111;
    --highlight-color: #3b7a57;
    --border-color: #ccc;
    --accent-color: #3b7a57;
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  .header-spacer {
    height: 50px;
  }

  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
  }

  .page-header .left h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    text-transform: uppercase;
  }

  .page-header .left h1 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  .page-header .right {
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1.0rem;
    color: var(--text-color);
  }

  .biography-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
  }

  .biography-section h2 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
  }

  .biography-section p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .separator {
    height: 2px;
    background-color: var(--border-color);
    margin: 3rem auto;
    width: 80%;
  }

  .timeline {
    padding: 4rem 2rem;
  }

  .timeline h2 {
    text-align: left;
    font-size: 1.8rem;
    font-family: 'Inter';
    text-transform: uppercase;
    color: var(--highlight-color);
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding: 0 2rem;
    margin-bottom: 2rem;
  }

  .timeline-entry {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: #fdf8ed;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }

  .timeline-entry.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-entry h3 {
    margin: 0;
    font-family: 'Inter';
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
  }

  .timeline-entry .details {
    margin-top: 1rem;
    display: none;
    font-size: 0.95rem;
    color: #444;
  }

  .timeline-entry .details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .timeline-entry .details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .timeline-entry .details li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #3b7a57;
    font-size: 0.75rem;
    top: 0.1rem;
  }

  .timeline-entry.active .details {
    display: block;
  }

  .timeline-entry:hover {
    border-color: var(--highlight-color);
    background-color: #f0f8f5;
  }