/* ฟอนต์หลัก */
body {
    font-family: 'Prompt', sans-serif;
    background-color: #f4f9fc;
}

.site-header {
    background-color: #0d3b66 !important;
    padding-top: .3rem !important;
    padding-bottom: 0 !important;
}

.site-header .social-icon {
    gap: .2rem;
}

.site-header p,
.site-header a {
    font-size: .2rem;
    margin-bottom: 0;
}
/* Social Icons */
.social-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
}

.social-icon-item {
    display: inline-block;
}

.social-icon-link {
    font-size: 2.25rem;
    color: #ffffff;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    color: #ffffff;
}


/* Navbar */
.navbar {
    background: white;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #0d3b66;
}

.navbar-brand .brand-text {
    margin-left: 10px;
    line-height: 1.2;
}

.navbar-brand small {
    text-transform: none;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.1rem;
    display: block;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #0d3b66;
}

.navbar-nav .nav-link:hover {
    color: #19507d;
}

/* Responsive แบรนด์บนมือถือ */
@media (max-width: 768px) {
    .brand-text {
        font-size: 1.2rem !important;
    }

    .brand-text small {
        font-size: 1rem !important;
    }

    .navbar .container {
        padding-left: 0 !important;
    }

    .navbar-brand {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

