/* ĐỊNH DẠNG CHO PHẦN SẢN PHẨM TRANG CHỦ */
/* Container chứa danh mục sản phẩm */
.du-an-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 10px khoảng cách dọc*/
}


/* Mỗi danh mục sản phẩm */
.du-an-category {
    width: 100%;
    transition: all 0.3s ease-in-out; /* Hiệu ứng mượt */
}

/* Khi danh mục bị ẩn */
.du-an-category.hidden {
    height: 0 !important;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
}

/* Định dạng sản phẩm */
.du-an-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hình ảnh sản phẩm */
.du-an-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hiệu ứng hover: Phóng to ảnh nhẹ */
.du-an-card:hover img {
    transform: scale(1.05);
}

/* Hiệu ứng hover: Đổ bóng khi di chuột */
.du-an-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hiệu ứng overlay */
.du-an-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: rgba(28, 187, 118, 0.9);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    font-weight: bold;
    transition: height 0.3s ease-in-out;
    opacity: 1;
}
/* Khi hover: Hiện overlay lên toàn bộ ảnh */
.du-an-card:hover .du-an-overlay {
    height: 70%;
    opacity: 0.5;
}
/* Hiệu ứng hover */
.du-an-card:hover {
    transform: scale(1.05);
}

/* Chữ trong overlay */
.overlay-text {
    text-align: center;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

/* Nút Learn More */
.read-more {
    display: none;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    padding: 8px 12px;
    border: 1px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

/* Khi hover vào sản phẩm, giữ nút Learn More */
.du-an-card:hover .read-more {
    display: inline-block;
    opacity: 1;
}
/* Khi hover vào nút Learn More, đổi màu */
.read-more:hover {
    background: rgb(61, 71, 174);
    color: #F4A533;
}

/* Đảm bảo chữ không bị mất */
.du-an-card a {
    text-decoration: none;
    color: inherit;
    z-index: 3;
    position: relative;
}
/* Đảm bảo hàng sản phẩm luôn giữ đúng kích thước */
.du-an-category .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Căn giữa khi có ít sản phẩm */
    gap: 10px 0; /* Khoảng cách giữa các dòng */
}

/* Định dạng sản phẩm trong danh mục */
.du-an-category .col-md-4 {
    display: flex;
    justify-content: center;
}
/* Nút chuyển slider */
/* .carousel-control-prev, .carousel-control-next {
    width: auto;
    background: rgba(188, 84, 29, 0.2);
    border-radius: 50%;
} */


/* Khi chọn danh mục sản phẩm, ẩn slider */
.du-an-category .category-slider {
    display: block;
}

/* Khi chọn danh mục cụ thể, ẩn slider */
.du-an-category.selected .category-slider {
    display: none;
}

/* Khi màn hình nhỏ hơn 992px (Tablet), du-an Bar nhỏ lại */
@media (max-width: 992px) {


    .du-an-container {
        width: 100%; /* Sản phẩm vẫn chiếm nhiều hơn */
    }
}

/* Khi màn hình nhỏ hơn 768px (Điện thoại), du-an Bar xuống dưới */
@media (max-width: 768px) {


    .du-an-container {
        width: 100%; /* Sản phẩm cũng chiếm toàn bộ */
        display: inline;
    }
}

/* Định dạng sản phẩm */
.du-an-item {
    flex: 1 1 calc(33.33% - 10px) !important; /* 3 sản phẩm mỗi hàng */
    max-width: calc(33.33% - 10px) !important;
    margin-bottom: 10px;
}

/* Khi màn hình nhỏ hơn 992px, hiển thị 2 sản phẩm mỗi hàng */
@media (max-width: 992px) {
    .du-an-item {
        flex: 1 1 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

/* Khi màn hình nhỏ hơn 600px, hiển thị 1 sản phẩm mỗi hàng */
@media (max-width: 600px) {
    .du-an-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}
/* Định dạng du-an Bar - full chiều ngang */
.du-an-bar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 10px 0;
    border-radius: 8px;
    position: relative;
}
/* Thanh cuộn ngang khi danh mục quá dài */
.du-an-bar {
    display: flex;
    flex-wrap: nowrap; /* Không xuống dòng */
    justify-content: center;
    overflow-x: auto; /* Tự động tạo thanh cuộn nếu danh mục dài */
    white-space: nowrap; /* Không cho chữ xuống dòng */
    padding: 5px 0;
    max-width: 100%;
}


/* Định dạng các mục trong du-an Bar */
.du-an-bar .nav {
    display: flex;
    flex-wrap: nowrap; /* Giữ tất cả trên một hàng */
    gap: 15px; /* Tạo khoảng cách giữa các mục */
    justify-content: center; /* Căn giữa */
    align-items: center;
}

/* Định dạng các mục */
.du-an-bar .nav-item {

    flex-shrink: 0; /* Không cho các mục co lại */
}

/* Định dạng link */
.du-an-bar .nav-link {
    font-weight: bold;
    color: #007bff;
    padding: 10px 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap; /* Ngăn chữ bị xuống dòng */
    font-size: 16px;
}
/* Khi hover vào du-an Bar */
.du-an-bar .nav-link:hover {
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

/* Khi màn hình nhỏ hơn 768px, đổi thành menu dọc */
@media (max-width: 768px) {
    .du-an-bar-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .du-an-bar {
        flex-wrap: wrap; /* Cho phép xuống dòng */
        overflow-x: visible; /* Không có thanh cuộn */
    }

    .du-an-bar .nav {
        flex-direction: column; /* Chuyển thành dọc */
        align-items: center;
        width: 100%;
        gap: 5px;
    }

    .du-an-bar .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
/* Định dạng sản phẩm theo 4 cột */
.du-an-item {
    width: 20%; /* Mỗi sản phẩm chiếm 23.5% để đảm bảo fit 4 cột */
    max-width: 20%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Khoảng cách giữa các dòng */
}

/* Định dạng khi màn hình nhỏ hơn 992px (Tablet) */
@media (max-width: 992px) {
    .du-an-item {
        width: 48%; /* Hiển thị 2 sản phẩm mỗi hàng */
        max-width: 48%;
    }
}

/* Định dạng khi màn hình nhỏ hơn 600px (Mobile) */
@media (max-width: 600px) {
    .du-an-item {
        width: 100%; /* Hiển thị 1 sản phẩm mỗi hàng */
        max-width: 100%;
    }
}
