/* =========================
   FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@600;700&display=swap');

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   NAVBAR (RAPI)
========================= */
.header {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
}

.dark .header {
    background: rgba(0,0,0,0.7);
}

/* =========================
   HERO (RAPI & CENTERED)
========================= */
.profile_inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 420px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 60px 30px;

    border-radius: 20px;
    text-align: center;

    background-image: 
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("/img/header-toraja.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* =========================
   TEXT HERO
========================= */
.profile_inner h1 {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.profile_inner .profile_description {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 650px;
    line-height: 1.6;
}

/* =========================
   BUTTON (RAPI)
========================= */
.profile_inner .buttons .button {
    background: linear-gradient(135deg, #8b0000, #c0392b);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 20px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.profile_inner .buttons .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* =========================
   CARD ARTIKEL
========================= */
.post-entry {
    border-radius: 12px;
    transition: all 0.25s ease;
}

.post-entry:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */
img {
    border-radius: 10px;
}
