/* header-footer.css - Updated for SME Assessment TH (Simplified Design) */

/* Header Base Structure */
.kc-header-detail {
    width: 100%;
    background-color: #003633; /* Corporate dark green */
    position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional subtile shadow */
}

/* Base header height for desktop */
.kc-header-detail .header-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 120px;
    padding: 0;
}

/* Link Wrapper */
.kc-header-detail .brand-link {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 16px;
}

/* Logo Sizing */
.kc-header-detail .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.kc-header-detail .logo:hover {
    opacity: 0.8;
}

.kc-header-detail .logo img {
    height: 35px;
    width: auto;
    display: block;
}

/* Vertical Divider */
.kc-header-detail .divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
}

/* Header Text / Title */
.kc-header-detail .header-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.kc-header-detail .title-break {
    display: none;
}

/* --------------- Footer Structure ------------- */
#kc-footer {
    background-color: #001E1F;
    padding: 24px 0;
}

#kc-footer .copyright-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500; 
    line-height: 1.5;
    text-align: center;
}

/* --------------- Responsive Mobile (max-width: 991px) ------------- */
@media screen and (max-width: 991px) {
    .kc-header-detail .container {
        padding: 0;
    }
    
    .kc-header-detail .header-bar {
        height: 80px;
        padding: 0 16px;
    }

    .kc-header-detail .brand-link {
        gap: 8px;
    }

    .kc-header-detail .logo img {
        height: 25px;
    }

    .kc-header-detail .divider {
        height: 40px;
    }

    .kc-header-detail .header-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
    }

    .kc-header-detail .title-break {
        display: block;
    }

    #kc-footer .copyright-text {
        text-align: center;
    }
}