/* css/about.css - FINAL VERSION: Terkunci Penuh (Perbaikan Jarak Akhir) */

/* --- BLOK 1: ICON KOIN BERGERAK & BERCAHAYA --- */

.section-title .section-icon {
    /* Locked Settings dari user */
    height: 1.5em; 
    width: auto;
    vertical-align: middle; 
    
    /* REVISI AKHIR: Jarak ke kanan ke teks minimal (0.3rem) */
    margin-right: 0.3rem; 
    /* REVISI AKHIR: Geser ke Kanan ditingkatkan (1.5rem) */
    margin-left: 1.5rem; 

    /* EFEK CAHAYA LEBIH BERSINAR (LOCKED) */
    filter: drop-shadow(0 0 12px rgba(157, 0, 255, 0.8)) brightness(1.2); 
    
    /* REVISI AKHIR: 3D Coin Flip (LOCKED) */
    animation: icon-flip 2.2s ease-in-out infinite alternate; 
    
    /* Properti penting untuk 3D Flip (LOCKED) */
    perspective: 1000px; 
    transform-style: preserve-3d; 
}

@keyframes icon-flip {
    /* Rotasi Y 180 derajat untuk efek flip (LOCKED) */
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(180deg); }
}

/* Keyframe lama (hanya didefinisikan, tidak digunakan oleh icon) */
@keyframes icon-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(157, 0, 255, 0.6)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(157, 0, 255, 0.9)); }
}

/* --- BLOK 2: KONTEN ABOUT (LOCKED LOGIC) --- */

.about {
    position: relative;
    overflow: hidden; 
    padding: 8rem 1rem;
    text-align: center; 
    min-height: 800px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- Karakter Robot Sebagai Latar Belakang: FINAL CONFIG --- */
.about-background-character {
    position: absolute;
    top: 50%;
    /* UKURAN AKHIR: Kecil (50vw / 700px) */
    width: 50vw; 
    max-width: 700px; 
    height: auto;
    opacity: 0.07; 
    pointer-events: none;
    z-index: 1; 
    
    /* FINAL: GERAKAN TERSANGAT CEPAT (4s) */
    animation: background-drift 4s ease-in-out infinite alternate;
}

.about-background-character img {
    width: 100%;
    height: auto;
    object-fit: contain;
    
    /* Efek glow yang kuat dan cerah */
    filter: drop-shadow(0 0 100px rgba(157, 0, 255, 0.4)) brightness(1.1); 
    
    /* Animasi pulsasi halus */
    animation: pulse-robot 4s ease-in-out infinite alternate;
}

/* Keyframe untuk pulsasi robot (DIKUNCI) */
@keyframes pulse-robot {
    0% { transform: scale(1); filter: brightness(1.1) drop-shadow(0 0 70px rgba(157, 0, 255, 0.3)); }
    100% { transform: scale(1.01); filter: brightness(1.2) drop-shadow(0 0 100px rgba(157, 0, 255, 0.5)); }
}

/* Keyframe untuk gerakan melayang ACAC KEMANA-MANA (2D Drift) (DIKUNCI) */
@keyframes background-drift {
    /* Posisi Awal (Kiri Bawah) */
    0% { 
        transform: translate(-100%, -45%) scale(0.78) rotate(-2deg); 
    } 
    /* Tengah (Kanan Atas) */
    50% { 
        transform: translate(-40%, -60%) scale(0.85) rotate(3deg); 
    } 
    /* Akhir (Kiri Atas) */
    100% { 
        transform: translate(-10%, -40%) scale(0.78) rotate(-2deg); 
    } 
}


/* --- Konten Teks Container --- */
.about-content {
    /* FINAL: Lebar Maksimal Kontainer 1100px */
    max-width: 1100px; 
    /* FINAL: Jarak Judul ke Konten SANGAT RAPAT (0.3rem) */
    margin: 0.3rem auto 0; 
    padding: 1rem 0; 
    border: none;
    border-radius: 0; 
    background-color: transparent; 
    backdrop-filter: none; 
    position: relative;
    z-index: 2; 
    text-align: left; 
    box-shadow: none; 
}

/* --- Styling Per Paragraf: FINAL CONFIG --- */
.about-content p {
    /* Font size final: 1.1rem */
    font-size: 1.1rem; 
    line-height: 1.8; 
    
    /* FINAL: Alignment Rata Tengah */
    text-align: center; 

    /* FINAL: Lebar Seragam 1000px */
    width: 1000px; 
    max-width: 90%; 

    /* FINAL: Jarak antar Paragraf 0.8rem */
    margin: 0 auto 0.8rem; 
    
    color: #fff; 
    font-weight: 300;
    
    padding: 1rem 2rem; 
    /* FINAL: Opacity Diringankan (0.5) */
    background-color: rgba(5, 5, 10, 0.5); 
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05); 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); 
}

/* Paragraf terakhir (Teks Bold) (DIKUNCI) */
.about-content p:last-child {
    font-weight: 700; 
    text-align: center; 
    /* Lebar menyesuaikan konten */
    width: auto; 
    max-width: 80%; 
}

/* Responsif */
@media (max-width: 768px) {
    .about-background-character {
        width: 100vw; 
        opacity: 0.05; 
        /* FINAL: Mobile juga dipercepat 4s */
        animation-duration: 4s;
    }

    .about-content p {
        padding: 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.6rem;
        /* FINAL: Mobile juga rata tengah */
        text-align: center; 
        /* Di mobile, lebar kembali fleksibel */
        width: auto; 
        max-width: 100%; 
        background-color: rgba(5, 5, 10, 0.5); 
    }
}