﻿/*=========================
        Header
==========================*/

.bal-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 0;
}

.bal-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=========================
        Logo
==========================*/

.bal-logo img {
    height: 62px;
    width: auto;
    transition: .3s;
}

.bal-logo:hover img {
    transform: scale(1.05);
}


/*=========================
        Menu
==========================*/

.bal-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

    .bal-menu a {
        text-decoration: none;
        color: #203050;
        font-weight: 600;
        font-size: 15px;
        transition: .25s;
    }

        .bal-menu a:hover {
            color: #2563eb;
        }

/*=========================
        Buttons
==========================*/

.bal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #2563eb;
    border: 1px solid #2563eb;
    transition: .3s;
}

    .btn-login:hover {
        background: #2563eb;
        color: white;
    }

.btn-register {
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    background: #2563eb;
    transition: .3s;
}

    .btn-register:hover {
        background: #1748b6;
    }


/*=========================
      Mobile Button
==========================*/

.bal-mobile-btn {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    color: #203050;
    cursor: pointer;
}


/*=========================
      Responsive
==========================*/

@media(max-width:992px) {

    .bal-menu {
        display: none;
    }

    .bal-actions {
        display: none;
    }

    .bal-mobile-btn {
        display: block;
    }

    .bal-logo img {
        height: 52px;
    }
}

.hero-banner {
    background-image: url('../image/balanding-logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    position: relative;
}

.hero-banner {
    min-height: 700px;
}

@media (max-width:992px) {

    .hero-banner {
        min-height: 520px;
    }
}

@media (max-width:768px) {

    .hero-banner {
        min-height: 430px;
    }
}


.bal-header {
    background: transparent;
    width: 100%;
}

.bal-navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bal-logo img {
    height: 58px;
    width: auto;
}

.bal-menu {
    display: flex;
    gap: 34px;
}

    .bal-menu a {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }

.bal-actions {
    display: flex;
    gap: 12px;
}


.analysis-spacing {
    height: 12px;
}

.last-record-content .analysis-list {
    margin: 8px 0 12px 0;
    padding-right: 25px;
    list-style-type: disc;
}

    .last-record-content .analysis-list li {
        margin-bottom: 6px;
        line-height: 1.8;
    }

.last-record-content .analysis-paragraph {
    margin-bottom: 10px;
    line-height: 2;
}

.last-record-content .analysis-main-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 16px 0 12px;
    padding: 8px 14px;
    background: #f8fafc;
    border-right: 4px solid #2A6CF0;
    border-radius: 8px;
}

.last-record-content .analysis-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    margin: 14px 0 10px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-right: 4px solid #64748b;
    border-radius: 6px;
}
