@import url('https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

#tentang-kami .nav-pills .nav-link {
  background-color: #f5f5f5;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 0;
  text-align: left;
  padding: 12px 20px;
}

#tentang-kami .nav-pills .nav-link.active {
  background-color: #182421;
  color: #fff;
}

#tentang-kami .tab-content {
  background: #fff;
}

#tentang-kami h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #171818;
}

#tentang-kami ul li {
  margin-bottom: 10px;
  text-align: justify;
}

#tentang-kami p {
  color: #161414;
  text-align: justify;
}

.tab-content ul {
  padding-left: 20px;
}

/* SECTION CONTAINER */
.our-team-section {
  background-color: #e8e1e1;
  padding: 20px 10px 30px;
  overflow: hidden;
}

/* JUDUL UTAMA */
.our-team-title {
  font-size: 46px;
  font-weight: 700;
  color: #0d1b2a;
  text-transform:uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

/* Team Section */
.team-card {
  background: white;
  border: 4px solid transparent;
  border-radius: 20px;
  padding: 0;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(78, 84, 200, 0.3);
}

.team-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  background: linear-gradient(350deg, #fff, #cd9a9a);
  border-radius: 20px;
  transition: all 0.5s;
}

.team-card .card-body {
  text-align: center;
  padding: 20px;
}

.team-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0a0909;
}

.team-card .card-text {
  font-size: 1rem;
  color: #474747;
}

.portrait-img {
  width: 100%;
  height: 450px;   /* ⬅️ INI YANG NGUNCI TINGGI */
  object-fit: cover;
}

/* Tombol Toggle */
.btn-toggle {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #dc5b5b, #f7faf7);
  color: white;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(78, 84, 200, 0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: skewX(-20deg);
  transition: all 0.5s;
}

.btn-toggle:hover::before {
  left: 100%;
}

#toggle-btn {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

.btn-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(42, 43, 50, 0.4);
}

/* Extra Anggota Tersembunyi */
#extra-members {
  display: none;
  flex-wrap: wrap;
}

/* Efek Scroll AOS */
[data-aos] {
  transition-property: transform, opacity;
}

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

.team-card .portrait-img {
  height: 350px !important;
}

@media (max-width: 768px) {
  .team-card .portrait-img {
    height: 350px !important;
  }
}
