/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 250px;
    height: 100vh;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 80px 30px;
    transition: right 0.3s ease;
    z-index: 1100;
  }

  .nav.open {
    right: 0;
  }

  .burger {
    display: block;
  }

  .hero {
    flex-direction: column; /* Passe en colonne */
    text-align: center; /* Centrage du texte */
    padding: 30px 20px;
  }

  .hero-left {
    order: 2; /* Le texte passe en dessous */
  }

  .hero-right {
    order: 1; /* L'image passe au-dessus */
    margin-bottom: 20px;
  }

  .hero-left h1 {
    font-size: 1.8em;
  }

  .hero-left h2 {
    font-size: 1.4em;
  }

  .hero-right img {
    max-width: 250px; /* Réduit légèrement sur mobile */
  }
}
