/* ==================================================
   ABOUT PAGE - GACOR VERSION
================================================== */

/* =====================
   GLOBAL RESET
===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* =====================
   HERO SECTION
===================== */
.about-hero {
    position: relative;
    background: url('../img/dpp1.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,61,98,0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease forwards;
    padding-top: 100px; /* geser konten ke bawah */
}

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.about-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/* =====================
   ANIMATION
===================== */
@keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 8px rgba(0,170,255,0.4); }
    50% { box-shadow: 0 0 16px rgba(0,170,255,0.6); }
}

/* =====================
   SECTION TITLES
===================== */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #0a3d62;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #0a3d62);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =====================
   MISSION & VISION
===================== */
.about-mission {
    padding: 80px 20px;
    background-color: #f8f9fb;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.mission-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-card h3 {
    font-size: 24px;
    color: #0a3d62;
    margin-bottom: 16px;
}

.mission-card ul {
    list-style: disc inside;
    color: #333;
    line-height: 1.6;
}

/* =====================
   TEAM LEADER - 2 COLUMNS
===================== */
.team-leader-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-leader-grid:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,170,255,0.25);
}

.team-leader-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00aaff;
}

.team-leader-info h4 {
    font-size: 28px;
    color: #0a3d62;
    margin-bottom: 16px;
}

.team-leader-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .team-leader-grid {
        flex-direction: column;
        text-align: center;
    }

    .team-leader-photo img {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .team-leader-info h4 { font-size: 24px; }
    .team-leader-info p { font-size: 14px; }
}



/* =====================
   ORGANIZATION STRUCTURE
===================== */
.about-org {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.about-org h2.section-title {
    margin-bottom: 50px;
}

.org-image-container {
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-image-container:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0,170,255,0.5);
}

.org-image-container img {
    width: 100%;
    max-width: 1000px;
    display: block;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 32px; }
    .about-hero p { font-size: 16px; }
    .mission-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .fun-grid { flex-direction: column; gap: 20px; }
    .org-image-container img { max-width: 90%; }
}
