


/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fb;
    color: #333;
    line-height: 1.6;
}

/* Smooth UI feel */
* {
    transition: all 0.2s ease-in-out;
}

/* ================= HEADER ================= */
.pkp_structure_head {
    background: linear-gradient(135deg, #8B004B, #c2185b);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Logo / Title */
.pkp_site_name a {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

/* ================= NAVIGATION ================= */

.pkp_navigation_primary_row {
    background-color: transparent; /* Let header gradient show */
}

/* Menu links */
.pkp_navigation_primary a {
    color: #fff !important; /* white text on gradient */
    font-weight: 500;
    position: relative;
}

/* Hover underline effect */
.pkp_navigation_primary a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffcc00; /* yellow underline on hover for contrast */
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.pkp_navigation_primary a:hover::after {
    width: 100%;
}

/* Dropdown menus */
.pkp_navigation_primary li ul li a {
    color: #000 !important; /* black text for dropdown items on white bg */
}

.pkp_navigation_primary li ul {
    background-color: #fff; /* dropdown background white */
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pkp_navigation_primary li ul li a:hover {
    color: #8B004B !important; /* highlight hovered item */
}

.pkp_navigation_primary {
    background-color: transparent;
}


/* ================= HERO EFFECT ================= */
/* subtle overlay feel */
.pkp_structure_head::after {
    content: '';
    display: block;
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin-top: 15px;
}

/* ================= BUTTONS ================= */
button, .pkp_button {
    background-color: #8B004B;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139,0,75,0.2);
}

button:hover, .pkp_button:hover {
    background-color: #a0005a;
    transform: translateY(-1px);
}

/* ================= FORMS (LOGIN, REGISTER) ================= */
.cmp_form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    max-width: 500px;
    margin: auto;
}

.cmp_form input {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* ================= PAGE TITLES ================= */
.page h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ================= CARDS ================= */
.obj_issue_summary,
.obj_article_summary {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    border-left: 4px solid #8B004B;
}

.obj_issue_summary:hover,
.obj_article_summary:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= LINKS ================= */
a {
    color: #8B004B;
    font-weight: 500;
}

a:hover {
    color: #c2185b;
}

/* ================= FOOTER ================= */
.pkp_structure_footer_wrapper {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px;
    text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .cmp_form {
        padding: 20px;
    }

    .page h1 {
        font-size: 1.5rem;
    }
}
