/* Container Dasar */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section dengan Background SVG */
.about-hero {
  height: 80vh;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
              url('../assets/about.svg'); /* Path ke SVG kamu */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content .section-title {
  /* Menggunakan style yang sama dengan index.html */
  font-family: 'Playfair Display', serif !important;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #061669; /* Biru identitas BEM */
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

.section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  color: #1f2933;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Deskripsi */
.about-description {
  padding: 80px 0;
  background-color: #ffffff;
}

.playfair-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #061669;
  margin-bottom: 20px;
}

.text-wrapper p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
  }
}

/* Container Utama */
.vm-compact {
    padding: 80px 0;
    background-color: #FaFaFa; /* Latar belakang halaman */
}

/* Card Utama dengan Gradient */
.vm-card {
    display: flex;
    overflow: hidden;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 1100px;
    margin: 0 auto;
}

/* Bagian Visi (Warna Terang #193deb ke #9400d3) */
.visi-side {
    flex: 1;
    background: linear-gradient(135deg, #193deb 0%, #9400d3 100%);
    padding: 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag-white {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 20px;
}

.visi-side .playfair {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.visi-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Bagian Misi (#FaFaFa) */
.misi-side {
    flex: 1.2;
    background-color: #ffffff;
    padding: 50px;
}

.misi-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #193deb;
    margin-bottom: 30px;
}

.misi-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.misi-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #FaFaFa; /* Warna background list */
    border-radius: 12px;
    transition: 0.3s ease;
    border-left: 4px solid transparent;
}

.misi-mini-item:hover {
    transform: translateX(10px);
    border-left: 4px solid #9400d3;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.misi-num {
    width: 30px;
    height: 30px;
    background: #193deb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.misi-mini-item p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .vm-card {
        flex-direction: column;
    }
    .visi-side, .misi-side {
        padding: 40px 30px;
    }
}


/* Filosofi Logo Section */
/* SECTION FILOSOFI LOGO */
.logo-philosophy {
    padding: 100px 0;
    background-color: #FaFaFa;
}

.logo-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Visual Logo di Kiri */
.logo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(25, 61, 235, 0.1), rgba(148, 0, 211, 0.1));
    border-radius: 50%;
    filter: blur(40px);
}

.floating-logo {
    width: 80%;
    max-width: 350px;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Detail Penjelasan di Kanan */
.logo-details {
    flex: 1.2;
}

.tag-gradient {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(90deg, #193deb, #9400d3);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.logo-details h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 3.5rem;
    color: #061669;
    margin-bottom: 20px;
}

.logo-intro {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.phi-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phi-item {
    display: flex;
    gap: 20px;
}

.phi-icon {
    font-size: 1.5rem;
    background: linear-gradient(to bottom, #193deb, #9400d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.phi-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    color: #193deb;
    margin-bottom: 5px;
}

.phi-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .logo-grid {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .phi-item {
        text-align: left;
    }
    .logo-circle-bg {
        width: 300px;
        height: 300px;
    }
}

/* Nilai Nilai Elaborasi Mimpi Section */
/* SECTION NILAI-NILAI */
.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 3.5rem;
    color: #193deb;
    margin-top: 10px;
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Card Style */
.value-card {
    background: #FaFaFa;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(25, 61, 235, 0.1);
    border-color: #193deb;
}

/* Efek khusus untuk card highlight (opsional) */
.value-card.highlight {
    background: linear-gradient(145deg, #ffffff, #f0f3ff);
}

/* Nomor/Icon bergaya modern */
.value-icon {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #193deb, #9400d3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.value-card h4 {
    font-size: 1.8rem;
    color: #061669;
    margin-bottom: 15px;
}

.value-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Efek garis halus saat hover */
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #193deb, #9400d3);
    transition: width 0.4s ease;
}

.value-card:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .values-header h2 {
        font-size: 2.5rem;
    }
    .value-card {
        padding: 30px;
    }
}


/* Section Pengurus */
/* Background Linear Gradient Utama */
.structure-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #193deb 0%, #9400d3 100%);
  color: white;
}

/* Judul Tengah */
.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.white-text {
  color: #ffffff !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.group-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  text-align: center; /* Judul baris di tengah */
}

/* Navigasi Wrapper */
.navigation-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Update pada slider-track di css/about.css */
.slider-track {
  display: flex;
  gap: 25px;
  overflow-x: hidden; 
  /* scroll-behavior: smooth; <--- HAPUS ATAU KOMENTARI BARIS INI */
  padding: 15px 5px;
  width: 100%;
}

/* Tombol Navigasi */
.nav-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: white;
  color: #193deb;
  transform: scale(1.1);
}

/* Ukuran Kartu Mungil & Serupa */
.card-member {
  flex: 0 0 calc(33.333% - 17px); /* Selalu tampil 3 kartu di desktop */
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.photo-box {
  width: 100%;
  aspect-ratio: 3/4;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  padding: 15px;
  text-align: center;
  background: #ffffff;
}

.info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #193deb;
  font-weight: 800;
  margin-bottom: 5px;
}

.info p {
  font-size: 0.7rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .card-member {
    flex: 0 0 100%; /* Satu kartu di mobile */
  }
  .nav-btn { display: none; } /* Sembunyikan panah di mobile, pakai touch scroll */
  .slider-track { overflow-x: auto; }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .structure-section { padding: 40px 0; }
  
  .white-text { font-size: 1.8rem; }
  
  /* Perkecil Kartu di Mobile agar tidak memenuhi layar */
  .card-member {
    flex: 0 0 calc(100%); /* Tampilkan 1 kartu utama */
  }

  .navigation-wrapper {
    gap: 10px; /* Jarak panah dan kartu dipersempit */
  }

  .nav-btn {
    width: 32px; /* Perkecil ukuran tombol di HP */
    height: 32px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.3); /* Lebih terlihat di HP */
  }
}


/* Bidang Section */
/* Jarak antar section besar */
.spacer-vertical {
  height: 120px;
  background: transparent;
}

.bidang-container {
  padding-bottom: 100px;
}

.bidang-section {
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

/* TEMA WARNA (Tetap Mengikuti Identitas) */
.internal-theme { background: linear-gradient(135deg, #0d1b3e 0%, #193deb 100%); }
.adm-theme { background: linear-gradient(135deg, #003d33 0%, #00796b 100%); }
.ppm-theme { background: linear-gradient(135deg, #311b92 0%, #673ab7 100%); }
.sospol-theme { background: linear-gradient(135deg, #7f0000 0%, #d32f2f 100%); }

/* FLEX GRID: Membuat baris kedua otomatis di tengah jika genap/ganjil */
.bidang-flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Kunci agar item sisa berada di tengah */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD DEPARTEMEN PERBESAR */
.dept-card {
  flex: 0 0 400px; /* Ukuran dasar kartu lebih besar (400px) */
  text-align: center;
  margin-bottom: 20px;
}

.dept-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11; /* Rasio landscape lebar */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  border: 5px solid rgba(255,255,255,0.1);
}

.dept-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dept-img-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* Teks lebih besar */
  font-style: italic;
  font-weight: bold;
}

.dept-card:hover .dept-img-box img {
  transform: scale(1.15);
}

/* TOMBOL READ MORE SEBAGAI LINK */
.read-more-btn {
  display: inline-block;
  text-decoration: none;
  background: #3e527a; 
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.read-more-btn:hover {
  background: white;
  color: #193deb;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .dept-card {
    flex: 0 0 100%; /* Full lebar di mobile */
  }
  .spacer-vertical { height: 60px; }
  .dept-img-box span { font-size: 1.2rem; }
}