/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Typo et Couleurs */
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  header {
    background: #8D6E63;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #FFD700;
  }
  
  .hero {
    position: relative;
    text-align: center;
  }
  
  .hero img {
    width: 100%;
    height: auto;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
  }
  
  .menu, .contact-info, .contact-form {
    padding: 40px 20px;
    text-align: center;
  }
  
  .menu-item {
    margin: 20px 0;
  }
  
  /* Boutons */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background: #8D6E63;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #A1887F;
  }
  
  /* Formulaire */
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form input, form textarea {
    width: 80%;
    max-width: 500px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Footer */
  footer {
    background: #8D6E63;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
  }
  
  /* Animation d'apparition */
  .fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav a {
      display: block;
      margin: 10px 0;
    }
  
    .hero-text {
      width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    h1, h2 {
      font-size: 1.5em;
    }
  }