/* ---- Style général ---- */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    color: #333;
  }
  
  /* ---- Header ---- */
  header {
    
    text-align: center;
    padding: 30px 20px;
    background-color: #1565c0;
    color: white;
  }
  a {
    color: white;              /* couleur par défaut */
  }
  
  a:hover {
    text-decoration: underline; /* effet au survol (optionnel) */
    color: #f0f0f0;             /* couleur au survol */
  }
  
  a:visited {
    color: white;              /* empêche le violet après clic */
  }
  
  .logo-link {
    position: absolute;
    top: 0px;
    left: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo {
    width: 146px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
/* Logo visible par défaut (ordinateur) */
.site-logo {
  width: 150px;
  height: auto;
}

/* Cacher le logo sur les écrans de moins de 1024px (tablette et mobile) */
@media (max-width: 1024px) {
  .site-logo {
    display: none;
  }
}

  
  /* ---- Structure principale ---- */
  .home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
  }
  
  .home-left {
    text-align: left;
    font-size: 20px;
    width: 50%;
   
    
  }
  
  .home-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  /* ---- Boutons ---- */
  .btn {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 8px;
    background-color: #1565c0;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #0d47a1;
  }
  
  .btn-secondary {
    background-color: #42a5f5;
  }
  
  .btn-secondary:hover {
    background-color: #1e88e5;
  }
  
  /* ---- Footer ---- */
  footer {
    text-align: center;
    padding: 15px;
    background-color: #1565c0;
    color: white;
  }
  