/* ================================
   PROFIL PAGE CSS
   ================================ */

/* ---------- TITLE ATAS ---------- */
.profil-title-top {
    color: #e4e9f7; /* huruf transparan */
    -webkit-text-stroke: 1.5px #fff; /* garis tepi putih */
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 90px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* optional, bisa dihapus */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* fade-in saat DOM siap */
.profil-title-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- HERO IMAGE ---------- */
.profil-hero {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow: hidden;
    top: -120px;
    z-index: -1;
    transition: filter 0.5s ease, background-image 0.5s ease;
}

/* Overlay untuk dark mode */
.profil-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    transition: background 0.3s ease;
}

body.dark .profil-hero::after {
    background: rgba(0,0,0,0.3);
}

/* ---------- FADE BOTTOM ---------- */
.profil-fade-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(
        to bottom,
        rgba(228, 233, 247, 0) 0%,  
        rgba(228, 233, 247, 0.7) 60%, 
        #E4E9F7 100%                
    );
    transition: background 0.3s ease;
}

body.dark .profil-fade-bottom {
    background: linear-gradient(
        to bottom,
        rgba(18,18,18,0) 0%, 
        rgba(18,18,18,0.7) 60%, 
        #121212 100%
    );
}

/* ---------- CONTENT AREA ---------- */
.profil-content-area {
    max-width: 1100px;
    margin: -130px auto 0;
    padding: 20px 20px 50px;
    position: relative;
    z-index: 5;
    background: transparent; /* transparan, menyatu */
}

/* ---------- TEXT ---------- */
.profil-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.profil-text p {
    margin-bottom: 1.3rem;
}

/* ---------- DARK MODE ---------- */
body.dark {
    background-color: #121212;
    color: #e4e9f7;
}

body.dark .profil-title-top {
    color: #e4e9f7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

body.dark .profil-text {
    color: #e4e9f7; /* teks terang agar terbaca */
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 768px) {
    .profil-hero {
        height: 280px;
        margin-top: -45px;
    }

    .profil-title-top {
        font-size: 2.3rem;
        margin-top: 70px;
    }

    .profil-content-area {
        margin-top: -125px;
        padding: 15px 15px 40px;
    }
}
