/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #fefefe, #e2f0d9);
    color: #333;
    padding-top: 60px;
  }
  
  /* Header */
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3e3e3e;
    color: white;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
  }
  
  .site-title {
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  
  .site-title img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
  }
  
  /* Burger simple */
  .burger {
    font-size: 1.8rem;
    cursor: pointer;
    user-select: none;
  }
  
  /* Menu déroulant */
  .dropdown-menu {
    position: fixed;
    top: 60px; /* aligné juste en dessous de la topbar */
    right: 0;
    width: 220px;
    background-color: #3e3e3e;
    display: none;
    color: white;
    z-index: 9999; /* pour être sûr qu’il passe devant tout */
    overflow-y: auto;
    max-height: calc(100vh - 60px);
    border-left: 3px solid #ffffff22;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
  }
  
  .dropdown-menu.active {
    display: block;
  }
  
  .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .dropdown-menu ul li {
    border-bottom: 1px solid #555;
  }
  
  .dropdown-menu ul li a {
    display: block;
    padding: 18px 20px;
    font-size: 1.05rem;
    color: white;
    text-decoration: none;
  }
  
  .dropdown-menu ul li a:hover {
    background-color: #555;
  }
  
  
  
  /* Hero */
  .hero {
    background: url('../images/img1.jpeg') no-repeat center center/cover;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  }
  
  /* Contenu */
  .intro {
    padding: 40px;
    max-width: 900px;
    margin: auto;
    background-color: #ffffffcc;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .section {
    margin-top: 40px;
  }
  
  .section img,
  .section-img {
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .section-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
  
  h1, h2 {
    margin-bottom: 20px;
    color: #2c5f2d;
  }
  
  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 60px;
  }
  