/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background-color: #000; /* fond noir */
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    color: #000;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #4E342E; /* Marron foncé */
  }
  
  p.role {
    font-size: 1.1rem;
    font-style: italic ;
    color: #6D4C41; /* Marron clair */
  }

  p.role1 {
    font-size: 1.1rem;
    font-style: italic ;
    color: #6D4C41; /* Marron clair */
    margin-bottom: 1.5rem;
  }
  
  .links a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #8D6E63; /* Marron moyen */
    font-weight: bold;
  }
  
  .projects {
    text-align: left;
    margin-top: 2rem;
  }
  
  .projects h2 {
    margin-bottom: 1rem;
    color: #4E342E;
    text-align: center;
  }
  
  .project-card {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #f8f5f2;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #000; /* Bordure noire */
  }  
  
  .project-card img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 1rem;
    object-fit: cover;
  }
  
  .project-info {
    flex: 1;
  }
  
  .project-info strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .project-info small {
    color: #333;
  }
  
  .contact {
    margin-top: 2rem;
  }
  
  .contact a {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    background: #6D4C41; /* Marron clair */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .contact a:hover {
    background: #4E342E; /* Marron foncé */
  }
  
  /* Timeline styles */
.timeline {
    margin-top: 2rem;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #000;
  }
  
  .timeline-item {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
  }
  
  .timeline-date {
    font-weight: bold;
    color: #4E342E;
    margin-bottom: 0.3rem;
  }
  
  .timeline-content {
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #000;
    color: #000;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 15px;
    height: 15px;
    background-color: #6D4C41; /* Marron clair */
    border: 2px solid #000;
    border-radius: 50%;
  }
  
  .parcours {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .parcours h2 {
    color: #4E342E; /* marron foncé */
    margin-bottom: 1rem;
  }
  
  .parcours p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

/* Animation pour timeline */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .timeline-item:nth-child(1) {
    animation-delay: 0.2s;
  }
  .timeline-item:nth-child(2) {
    animation-delay: 0.4s;
  }
  .timeline-item:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Animation d'apparition au scroll */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .timeline-item.show {
    opacity: 1;
    transform: translateY(0);
  }
  