/* =========================================
   FILE: public/css/footer.css
   Chứa style riêng biệt cho Section 7 (Footer)
========================================= */

.site-footer {
    background-color: #3b3b3b;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    /* Dùng gap để tạo khoảng cách cực chuẩn giữa các cột */
    justify-content: space-between;
}

/* Chia mỗi cột */
.footer-col {
    flex: 1 1 calc(33.333% - 30px);
    /* Ép chia 3 cột trên PC */
    min-width: 280px;
    /* Chống méo khi thu nhỏ */
}

/* Tiêu đề cột */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #aaaaaa;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Nội dung chữ */
.footer-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    /* Làm chữ phụ hơi mờ đi để nổi bật tiêu đề */
}

/* Danh sách link */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

/* Hiệu ứng di chuột cho PC: đổi màu và nhích nhẹ sang phải */
.footer-links a:hover {
    color: var(--primary-color, #d89f3c);
    padding-left: 8px;
}

/* --- ICON MẠNG XÃ HỘI --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-5px);
    filter: brightness(1.2);
    /* Sáng lên nhẹ khi di chuột */
}

/* --- BẢN QUYỀN --- */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #555555;
    /* Vạch ngăn cách mỏng với khối nội dung */
    font-size: 0.85rem;
    color: #999999;
}

/* =========================================
   RESPONSIVE CHO TABLET & MOBILE
========================================= */

/* Dành cho màn hình iPad/Tablet */
@media (max-width: 992px) {
    .footer-col {
        flex: 1 1 calc(50% - 30px);
        /* Chuyển mượt mà sang 2 cột */
    }
}

/* Dành cho Điện thoại */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
        /* Thu gọn padding trên mobile cho đỡ trống */
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        /* Cách xa các khối ra một chút cho dễ nhìn */
    }

    .footer-col {
        flex: 1 1 100%;
        text-align: center;
        /* Căn giữa toàn bộ text cho sang trọng */
    }

    /* Nhấn nhá vạch kẻ tiêu đề bằng màu vàng Kuchen */
    .footer-heading {
        display: inline-block;
        border-bottom: 2px solid var(--primary-color, #d89f3c);
        padding-bottom: 5px;
    }

    /* Căn giữa cụm icon mạng xã hội */
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-links a {
        padding: 8px 0;
        /* Tăng diện tích bấm bằng ngón tay */
    }

    .footer-links a:hover {
        padding-left: 0;
        /* Tắt hiệu ứng nhích chữ trên điện thoại */
    }
}