/* assets/css/about.css - REVISI WHITE THEME & MOBILE FIX */

/* ========================
   STYLE KHUSUS ABOUT.HTML
   ======================== */

/* Reset Body untuk halaman About */
body.menu-page.about-page {
    background-color: #FAF5E6 !important; 
    background-image: none !important; 
}

/* Fix Padding agar Hero nempel ke atas */
#about-page-main {
    padding-top: 0 !important; 
    min-height: 100vh;
}

/* 1. HERO SECTION (TEXT PUTIH) */
.about-hero-section {
    background-color: var(--color-primary); /* Merah Marun */
    color: #ffffff; /* Teks Putih Mutlak */
    padding: 120px 0 80px; 
    text-align: center;
    position: relative;
    z-index: 5;
}

.about-hero-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* 2. INTRO SECTION (Lingkaran Logo & Teks) */
.about-intro-section {
    background-color: #FAF5E6; 
    padding: 100px 0;
    overflow: hidden;
}

.about-intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; 
}

/* Gambar Logo dalam Lingkaran */
.about-intro-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-intro-image img.circular-image {
    width: 350px;
    height: 350px;
    object-fit: contain; 
    background-color: white; 
    padding: 20px; 
    border-radius: 50%; 
    border: 5px solid var(--color-accent); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* Label Melayang di Gambar */
.about-intro-image .image-overlay-text {
    position: absolute;
    bottom: 20px; 
    right: 10%; 
    background-color: var(--color-accent); 
    color: var(--color-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Teks Deskripsi */
.about-intro-text {
    flex: 1;
}

.about-intro-text .section-tag { 
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify; /* Rata Kanan Kiri */
}

/* 3. VISI & MISI SECTION (BACKGROUND PUTIH) */
.vision-mission-section {
    background-color: #FAF5E6; 
    padding: 50px 0 100px;
}

.section-tag-vision-mission {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* Kotak Utama Visi Misi */
.vision-mission-box {
    background-color: white; /* GANTI JADI PUTIH */
    color: #333; /* Teks jadi Gelap */
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    border-top: 5px solid var(--color-primary); /* Aksen Merah di Atas */
}

.vision-box-content {
    margin-bottom: 40px;
    text-align: center;
}

.mission-box-content {
    border-top: 2px solid #eee; /* Garis pemisah halus */
    padding-top: 40px;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary); /* Judul Merah */
}

.vision-box-content p {
    font-size: 1.2rem; 
    line-height: 1.6;
    margin: 0 auto; 
    max-width: 80%;
    color: #555;
    font-weight: 500;
}

.mission-box-content ul {
    list-style: none; 
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
}

.mission-box-content ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 30px;
}

/* Bullet Point Custom (Checklist Merah) */
.mission-box-content ul li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary); 
    position: absolute;
    left: 0;
    top: 0;
}

/* 4. MAP SECTION FULL WIDTH */
.contact-map-section {
    width: 100vw; 
    margin-left: calc(50% - 50vw); 
    overflow: hidden;
    margin-bottom: -50px; /* Kompensasi padding main */
}

.footer-map-full-width iframe {
    display: block;
    width: 100%;
    height: 450px; 
    border: none;
    filter: grayscale(20%); /* Efek peta sedikit abu biar elegan */
}

/* ANIMASI FLOAT (Untuk Gambar) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================
   RESPONSIVE MOBILE FIX
   ============================ */
@media (max-width: 992px) {
    /* HERO */
    .about-hero-section h1 { font-size: 2.5rem; }
    
    /* INTRO: Tumpuk Vertikal */
    .about-intro-content {
        flex-direction: column-reverse; /* Teks dulu, baru gambar (atau sebaliknya sesuai selera) */
        /* Saya sarankan column-reverse agar gambar di atas judul di HP, atau column biasa */
        flex-direction: column; 
        gap: 50px;
        text-align: center;
    }

    .about-intro-text p { text-align: center; } /* Teks rata tengah di HP */
    
    .about-intro-image img.circular-image {
        width: 280px; height: 280px;
    }
    
    .about-intro-image .image-overlay-text {
        right: 0; left: 0; margin: auto; width: fit-content; bottom: -15px;
    }

    /* VISION MISSION */
    .vision-mission-box { padding: 30px; width: 90%; }
    .vision-box-content p { font-size: 1rem; max-width: 100%; }
    .mission-box-content ul li { text-align: left; font-size: 1rem; }
    .section-subtitle { font-size: 1.8rem; }
}

/* FOOTER SUDAH DIHANDLE GLOBAL.CSS */
/* Kita hapus style footer khusus di sini agar konsisten dengan Index */