﻿/* Logo */
.banner-logo {
    max-height: 140px;
}

/* Tên công ty */
.banner-company {
    color: green;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    text-align: center;
    line-height: 1.2;
    font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem);
}

/* giữ cụm nguyên dòng */
.company-prefix,
.company-name {
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-company {
        text-align: center;
        font-size: clamp(1.0rem, 5vw, 1.6rem);
        letter-spacing: 0.5px;
    }

    .company-prefix,
    .company-name {
        display: block; /* ép thành 2 dòng */
        white-space: nowrap; /* không cho ngắt bên trong */
    }

    /* ép dòng 2 tự co chữ khi không đủ chỗ */
    .company-name {
        font-size: min(6vw, 1.5rem);
    }
}

/* Địa chỉ */
.banner-address {
    color: green;
    font-size: 1.2rem;
    text-align: center;
}

/* Liên hệ */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .banner-company,
    .banner-address {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }
}

.contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
}

.contact-item a {
    text-decoration: none;
    color: green;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.2s;
}

    .contact-item a:hover {
        color: #2e7d32;
    }
