body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    scroll-behavior: smooth;
  }
  
  header {
    background-image: url('images/jardin.jpg');
    background-size: cover;
    color: white;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  
  h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  section {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
  }
  
  .gallery .images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: auto;
  }
  
  input[type="email"] {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  button {
    padding: 0.8rem;
    background-color: #8dc63f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #76a72e;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 2s ease forwards;
  }
  
  .slide-in {
    animation: slideIn 1.5s ease forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  