/* --- GLOBAL --- */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #dae2f8, #d6a4a4);
    color: #333;
  }
  
  /* --- NAVIGATION --- */
  nav {
    background: #2b6cb0;
    padding: 15px 20px;
    text-align: center;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #ffd700;
  }
  
  /* --- HEADER --- */
  .cv-header, .exp-header {
    text-align: center;
    margin: 30px 20px;
  }
  .cv-header img, .exp-header img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  .cv-header img:hover, .exp-header img:hover {
    transform: scale(1.1);
  }
  .cv-header h1, .exp-header h1 {
    color: #2b6cb0;
  }
  .subtitle {
    color: #555;
    font-size: 1.1em;
  }
  
  /* --- SIDEBAR (Accueil seulement) --- */
  .cv-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .sidebar {
    flex: 1 1 250px;
    background: #2b6cb0;
    color: white;
    padding: 30px 20px;
    min-height: 100vh;
  }
  .sidebar h2, .sidebar h3 {
    text-align: center;
  }
  .sidebar img {
    display: block;
    margin: 0 auto 20px;
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  }
  .skills li {
    background: rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 20px;
    display: inline-block;
    margin: 4px 4px 4px 0;
  }
  
  /* --- CONTENT --- */
  .content, main {
    flex: 3 1 600px;
    padding: 30px 20px;
  }
  
  /* --- SECTIONS --- */
  .cv-section, .exp-section {
    margin-bottom: 40px;
  }
  
  /* --- LISTES --- */
  ul {
    line-height: 1.6;
  }
  
  /* --- TABLEAUX --- */
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
  }
  th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  th {
    background-color: #2b6cb0;
    color: white;
  }
  tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  tr:hover {
    background-color: #e0ebff;
  }
  
  /* --- RESPONSIVE --- */
  @media only screen and (max-width: 900px) {
    .cv-wrapper {
      flex-direction: column;
    }
    .sidebar {
      min-height: auto;
    }
  }
  @media only screen and (max-width: 600px) {
    body {
      background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    }
    table {
      font-size: 14px;
    }
  }
  