 .membre {
	height: 107vh; 
    width: 100vw;
    display: flex;
    align-items: center; 
    justify-content: flex-end;
    flex-direction: column; 
    background-image: url("image/fond.png"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    color: #f5f5ef;
    text-align: center;
    position: relative;
}

.membre h1 {
    position: absolute;
    top: 30%; 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%); 
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px; 
    border: 2px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    transition: transform 0.3s ease-in-out;
	color: #ef9430;	
}

.bureau {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5ef;
    min-height: 80vh;
	width: 80vw;
	margin: 0 auto;
}

.bureau h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.bureau-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.bureau-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.bureau-membre {
    width: 200px; 
    aspect-ratio: 3/4;   
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
    font-weight: bold;
    padding: 10px;
	transition: transform 0.1s ease-in-out;
}

.bureau-container a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.bureau-membre:hover {
	transform: scale(1.05);
}

.bureau-membre h3 {
    font-size: 1.5rem;
    margin-top: 5px; 
    text-align: center;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
}

.bureau-membre p {
    font-size: 1rem;
    margin-bottom: 5px; 
    text-align: center;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
}

.scroll-link {
    text-decoration: none; 
    color: inherit; 
}


@media (max-width: 1200px) {
  .bureau h2 {
    font-size: 2rem;
  }

  .bureau-membre {
    width: 180px;
    height: 230px;
  }
}


@media (max-width: 992px) {
  .bureau-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .bureau-membre {
    width: 200px;   
    height: 260px;  
    flex: none;     
  }

  .bureau h2 {
    font-size: 1.8rem;
  }
}


@media (max-width: 768px) {
  .bureau {
    width: 100%;
    padding: 30px 10px;
  }

  .bureau-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .bureau-membre {
    width: 70%;        
    max-width: 320px;  
    height: 380px;     
  }

  .bureau h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .bureau h2 {
    font-size: 1.4rem;
  }

  .bureau-membre {
    width: 90%;        
    max-width: 280px;
    height: 320px;     
  }

  .bureau-membre h3 {
    font-size: 1rem;
  }

  .bureau-membre p {
    font-size: 0.8rem;
  }
}