/* ===== POLICES ===== */
body {
    font-family: 'Roboto Condensed', sans-serif;
    color: #111;
    background-color: #fff;
    margin: 0;
  }
  
  /* ===== TITRES ÉVÉNEMENTIELS ===== */
  .event-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #0d47a1;
    text-align: center;
    margin: 100px 20px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ===== SOUS-TITRES SECTIONS ===== */
  .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* ===== TEXTES D'INTRO ===== */
  .intro-text {
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
    font-family: 'Quicksand', sans-serif;
  }
  
  /* ===== BOUTONS ===== */
  .btn-primary {
    background-color: #0d47a1;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-primary:hover {
    background-color: #08306b;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: #ccc;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-secondary:hover {
    background-color: #bbb;
    transform: translateY(-2px);
  }
  
  /* ===== HIGHLIGHT TEXT ===== */
  .highlight-text {
    color: #c62828;
    font-weight: bold;
    background-color: #fff3f3;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
  }
  
  /* ===== GRILLE RESPONSIVE ===== */
  .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  /* ===== CARD ===== */
  .card {
    background-color: #eef3fc;
    border-left: 6px solid #0d47a1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }
  
  /* ===== LIENS NAVIGATION ===== */
  .nav-link {
    color: #eee;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 6px 12px;
    display: inline-block;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;
    height: 2px;
    background-color: #ffeb3b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link:focus,
  .nav-link:active {
    color: #50b5ff;
  }
  
  .nav-link:hover::after,
  .nav-link:focus::after,
  .nav-link:active::after {
    transform: scaleX(1);
  }
  
  /* ===== BOUTON FLOTANT RETOUR HAUT ===== */
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0d47a1;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: none;
    z-index: 999;
  }
  
  .scroll-to-top:hover {
    background-color: #08306b;
}