/* /assets/css/homepage.css - VERSI FINAL */

/* --- Font & Global Style --- */
body {
    font-family: 'Poppins', sans-serif;
    color: #444;
}
.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #198754; /* Green Accent */
    border-radius: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* --- Hero Section & Page Headers --- */
.hero-section, .page-header-section {
    position: relative;
    color: white;
    padding: 8rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.hero-section::before, .page-header-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.hero-section .container, .page-header-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1, .page-header-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-section p, .page-header-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1.5rem auto;
}

/* ========================================================== */
/* ========= STYLE BARU UNTUK HALAMAN TENTANG KAMI ========= */
/* ========================================================== */
.about-section-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}
.visi-misi-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    border: 0;
    height: 100%;
}
.visi-misi-card .icon {
    font-size: 3rem;
    color: #198754; /* Green */
    margin-bottom: 1rem;
}
.visi-misi-card h4 {
    font-weight: 600;
    color: #333;
}
.directory-card { border: 0; text-align: center; }
.directory-card .profile-img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 1rem; }
.directory-card .member-name { font-weight: 600; font-size: 1.2rem; color: #333; text-transform: uppercase; }
.directory-card .school-name { color: #6c757d; font-size: 0.9rem; text-transform: uppercase; }

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #198754, #0d6efd);
    color: #fff;
}