/* --- TEMA WARNA & BACKGROUND --- */
:root {
    --blue-desa: #1e5f94;
    --blue-darker: #0d3b66; 
    --grad-blue-start: #b3d7ff; 
    --grad-blue-end: #f0f7ff;
}

.profil-bg {
    background: linear-gradient(180deg, var(--grad-blue-start) 0%, var(--grad-blue-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    /* Diselaraskan ke Poppins */
    font-family: 'Poppins', sans-serif !important; 
}

/* --- JUDUL UTAMA --- */
.title-main {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900;
    color: var(--blue-darker);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.text-blue { 
    color: var(--blue-desa) !important; 
}

/* --- LOGO LINGKARAN (SYNC DENGAN INDEX) --- */
.navbar-desa img, .footer-desa img { 
    width: 50px; 
    height: 50px; 
    object-fit: cover; 
    border-radius: 50% !important; 
    border: 2px solid white; 
    background: white; 
}

/* Khusus Logo Footer agar tetap lingkaran sempurna */
.border-circle-footer {
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    padding: 2px;
}

/* --- SEKSI VISI MISI --- */
.card-visi-misi {
    padding: 45px 60px !important;
    border: 1px solid rgba(30, 95, 148, 0.15);
    background: #ffffff;
}

.section-title {
    /* Judul Seksi menggunakan Poppins Bold */
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Isi Visi */
.visi-text-black {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.3rem;
    font-weight: 700; 
    color: #000000; 
    line-height: 1.6;
}

/* Isi Misi */
.misi-list-black {
    padding-left: 20px;
}

.misi-list-black li {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500; 
    color: #000000; 
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

/* --- CARDS & HEADINGS --- */
.custom-card {
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(30, 95, 148, 0.18);
    border: none;
    font-family: 'Poppins', sans-serif !important;
}

.profil-heading {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800;
    color: var(--blue-darker);
    border-left: 7px solid var(--blue-desa);
    padding-left: 15px;
    font-size: 1.7rem;
    text-transform: uppercase;
}

.history-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Judul Bagan */
.custom-card h5 {
    font-family: 'Poppins', sans-serif !important;
}

/* --- GAMBAR STRUKTUR --- */
.img-fluid.rounded.border {
    border: 6px solid #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.img-fluid.rounded.border:hover {
    transform: scale(1.02);
}

/* --- RESPONSIVITAS --- */
@media (max-width: 768px) {
    .card-visi-misi { 
        padding: 30px 20px !important; 
    }
    .display-3 { 
        font-size: 2.5rem; 
    }
    .visi-text-black {
        font-size: 1.1rem;
    }
    .navbar-collapse {
        background: var(--blue-desa);
        padding: 15px;
        border-radius: 15px;
    }
}