/* Styles de la section About */
/* Section Hero */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background: url('https://i.imgur.com/h5v9uVI.png') center/cover no-repeat;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease-in;
    font-family: 'Satoshi', sans-serif;
  }

  @media (max-width: 768px) {
    .hero {
        height: 30vh;
    }
}

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
  }
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideUp 1s ease-in-out;
  }
  .hero-content p {
    font-size: 1.2rem;
    opacity: 0;
    animation: slideUp 1s ease-in-out 0.3s forwards;
  }

  @media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
}
  
  /* Sections About */
  .about-section {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-in-out;
    font-family: 'Satoshi', sans-serif;
  }
  .about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
  }
  .about-container.reverse {
    direction: rtl;
  }
  .about-container.reverse .about-text,
  .about-container.reverse .about-image {
    direction: ltr;
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform var(--transition-duration);
  }
  .about-image img:hover {
    transform: scale(1.02);
  }
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  /* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-container.reverse {
      direction: initial;
    }
  }

.about-burban {
    width: 100%;
    height: 400vh;
    border: none;
}

@media (max-width: 768px) {
    .about-burban {
        height: 580vh;
    }
}

/* Tablettes (paysage) et petits ordinateurs portables (largeur entre 769px et 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .about-burban {
        height: 600vh;
    }
}

/* Ordinateurs standards (largeur entre 1025px et 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1850px) {
    .about-burban {
        height: 400vh;
    }
}