/*
==================================================================
== FINAL POLISHED CSS - V6 (Mobile Fixes)
==================================================================
*/

/* --- 1. Main Header Container --- */
.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    flex-wrap: wrap;
}

/* --- 2. Styling the Title Text --- */
.pkp_visible_site_title {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
    margin: 0;
    padding-left: 20px;
}

/* --- 3. Logo Styling and Order --- */
.pkp_site_name {
    order: 1;
    margin-right: 0 !important;
}

.pkp_site_name img {
    max-height: 80px;
    width: auto;
}

.pkp_visible_site_title {
    order: 2;
}


/* --- 4. Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* Stacks logo and title vertically */
    .pkp_site_name_wrapper {
        flex-direction: column;
        align-items: center; /* Center items on mobile */
    }

    /* REVISED: More space below logo and smaller font size */
    .pkp_visible_site_title {
        padding-left: 10;
        padding-top: 5px; /* Increased space below the logo */
        text-align: center;
        font-size: 10px; /* Further reduced font size for mobile */
        line-height: 1.3;
    }

    /* Controls logo size on mobile */
    .pkp_site_name img {
        max-width: 50%; /* Further adjust logo width */
        height: auto;
    }
}

/* --- 5. Footer Customization --- */
.pkp_brand_footer {
    display: none;
}