/* executives.css */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

.executives-hero {
  /* margin-top: 100px; */
  position: relative;
  background: url("/Mboudjem\ Lionel.jpg");
  background-position: center;
  background-size: cover;

  /* background: linear-gradient(to right, #2e0059, #5c00b3); */
  color: white;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}
.executives-dark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.executives-hero h1 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.executives-hero p {
  position: relative;
  font-size: 1.2rem;
  color: #e0d4ff;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.executive-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  width: 280px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.exec-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #4b0082;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.exec-img:hover {
  transform: scale(1.05);
}

.exec-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #4b0082;
  margin: 0.5rem 0;
}

.exec-role {
  font-size: 0.95rem;
  color: #555;
  padding: 0 0.5rem;
}

.executives-footer {
  background-color: #1a1a2e;
  color: #bbb;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .executives-hero h1 {
    font-size: 2.2rem;
  }

  .executive-card {
    width: 100%;
    max-width: 330px;
  }

  .exec-img {
    width: 100px;
    height: 100px;
  }
}
