@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&display=swap');

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-300: #93c5fd;
    --blue-500: #3b82f6;
    --blue-700: #1d4ed8;
    --blue-900: #0f172a;

    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-soft: #f1f5f9;
    --card-bg: #ffffff;
    --border-soft: #e2e8f0;
}

body {
    margin: 0;
    font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--blue-50);
    color: var(--text-main);
    line-height: 1.7;
}

/* ====== MAIN LAYOUT ====== */

main {
    padding: 2.5rem 1.25rem 3.5rem;
    min-height: 100vh;
}

.profil-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: start;
}

/* Desktop: gambar & teks berdampingan */
@media (min-width: 900px) {
    .profil-container {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    }
}

/* ====== IMAGE CARD ====== */

.profil-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--blue-100);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.18);  /* blue shadow */
    border: 1px solid var(--blue-100);
}

.profil-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.profil-image:hover img {
    transform: scale(1.07);
    filter: brightness(1.05);
}

/* ====== TEXT CARD ====== */

.profil-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.9rem 1.9rem 1.7rem;
    border-left: 5px solid var(--blue-500);
    border-top: 1px solid var(--blue-100);
    border-right: 1px solid var(--blue-100);
    border-bottom: 1px solid var(--blue-100);
    box-shadow: 0 14px 30px rgba(29, 78, 216, 0.08);
}

.profil-content p {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* paragraf pertama sedikit lebih menonjol */
.profil-content .p1 {
    color: var(--blue-900);
    font-size: 1.05rem;
    font-weight: 500;
}

/* paragraf terakhir */
.profil-content .p4 {
    margin-bottom: 0;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 768px) {

    .profil-content {
        padding: 1.5rem 1.4rem 1.3rem;
    }

    .profil-content p {
        font-size: 0.95rem;
    }

    .profil-image {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .profil-content {
        padding: 1.25rem 1.1rem 1rem;
        border-radius: 14px;
    }

    .profil-image {
        border-radius: 14px;
    }
}

/* ====== FOOTER ====== */

.site-footer {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    padding: 20px;
    color: #888;
    background-color: #2F4156;
}
