.social-btn {
  background: linear-gradient(to right, #000000, #800000); /* hitam -> merah maroon */
  color: #fff !important;
  border: none;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.3s ease;
  text-align: center;
  white-space: normal; /* biar teks bisa turun ke bawah kalau kepanjangan */
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: #fff !important;
}

.our-team-section {
  background: url('/img/3.png') no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  min-height: 100vh; /* full screen */
}

.our-team-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* overlay gelap supaya card lebih jelas */
  z-index: 1;
}

.our-team-section .container {
  position: relative;
  z-index: 2;
}

.team-card {
  background: linear-gradient(to right, #000000, #800000);
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.team-card img {
  height: 350px;
  object-fit: cover;
}
