/* ================================================= */
/* 1. KHAI BÁO BIẾN VÀ CƠ SỞ */
/* ================================================= */

:root {
    /* Màu sắc đặc trưng theo mẫu */
    --custom-blue: #004c97;      /* Màu xanh đậm của logo */
    --custom-green: #009245;     /* Màu xanh lá cây của menu Active */
    --custom-dark-green: #00773b; /* Màu xanh lá cây đậm của thanh tìm kiếm và Footer */
    --custom-pink: #f7a6a4;      /* Màu hồng của banner */
    --custom-text-color: #333;
}

body {
    font-family: Arial, sans-serif;
    color: var(--custom-text-color);
}

/* Các lớp màu dùng xuyên suốt */
.custom-blue-text {
    color: var(--custom-blue) !important;
}

.custom-green-bg {
    background-color: var(--custom-green) !important;
}

.custom-dark-green-bg {
    background-color: var(--custom-dark-green) !important;
}

.custom-green-text {
    color: var(--custom-green) !important;
    font-weight: bold;
}
/* --- FOOTER Tùy chỉnh --- */

.custom-footer-heading {
    text-transform: uppercase;
    font-size: 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s, padding-left 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: #ffd700; 
    padding-left: 5px; 
}

/* Hộp Lượt truy cập */
.custom-access-box-border {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
}

.custom-counter-number {
    letter-spacing: 5px; 
    font-family: monospace; 
    color: #ffd700; 
}

.custom-horizontal-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1; 
}

/* Mạng xã hội */
.social-icon-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    color: white;
    font-size: 1.2rem;
    margin-right: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.custom-facebook-bg { background-color: #3b5998; }
.custom-youtube-bg { background-color: #ff0000; }
.custom-tiktok-bg { background-color: #000000; }
.custom-zalo-bg { 
    background-color: #0080ff; 
    padding: 5px;
}

/* Nút Scroll to Top */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    z-index: 1000;
}

/* Nút Zalo nổi */
.floating-zalo-btn {
    position: fixed;
    bottom: 20px;
    right: 70px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1000;
}

.floating-zalo-btn .zalo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}