/* Load Google Fonts Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Terapkan font Poppins ke seluruh elemen */
body,
.pkp_structure_page,
.pkp_structure_head,
.pkp_structure_main,
.pkp_structure_footer,
.pkp_site_name,
.pkp_page_title,
.pkp_navigation_primary,
.pkp_navigation_user,
.pkp_site_nav_menu,
.pkp_block,
.pkp_footer_content {
    font-family: 'Poppins', sans-serif !important;
}

/* Body text */
body {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #222; /* teks default lebih lembut daripada hitam pekat */
}

/* Heading */
h1, .pkp_page_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}
h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}
h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
h4, h5, h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Menu navigasi */
.pkp_navigation_primary > li > a,
.pkp_navigation_user > li > a {
    font-weight: 500;
    font-size: 14px;
    text-transform: Capitalize Each Word;
}

/* Sidebar / block titles */
.pkp_block .title {
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
.pkp_footer_content {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}
/* 🔹 Logo di header */
.pkp_site_name .navbar-brand img {
    max-height: 70px !important;
    width: auto !important;
}

/* 🔹 Logo di footer */
.pkp_brand_footer img {
    max-height: 60px !important;
    width: auto !important;
}
/* Paksa override ukuran logo */
.pkp_brand_footer img,
.pkp_site_name img,
.navbar-brand img {
    width: auto !important;
    max-height: 60px !important;   /* ubah tinggi logo footer */
    height: auto !important;       /* biar proporsional */
}
