<style>
/* Tùy chỉnh Logo trên Header */
.navbar-brand img {
    height: 45px; /* Chiều cao mặc định cho máy tính */
    width: auto;
    margin-right: 12px;
    transition: all 0.3s ease; /* Hiệu ứng mượt mà khi đổi kích thước */
}

/* Căn chỉnh chữ thương hiệu */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
}

/* Điều chỉnh cho màn hình điện thoại (Dưới 768px) */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px; /* Logo nhỏ lại một chút trên điện thoại */
        margin-right: 8px;
    }
    .navbar-brand {
        font-size: 1.1rem; /* Chữ nhỏ lại một chút để không bị tràn dòng */
    }
}
    /* Kiểu dáng cho các ô chức năng */
    .feature-box {
        padding: 30px;
        background: #fff;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        cursor: pointer;
    }
    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-color: #007bff;
    }
    .feature-box i {
        font-size: 2.5rem;
        color: #007bff;
        margin-bottom: 15px;
    }

    /* Bố cục lưới Album ảnh (Grid) */
    .photo-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 cột */
        grid-template-rows: repeat(2, 180px); /* 2 hàng, mỗi hàng 180px */
        gap: 12px;
    }
    .photo-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background: #eee;
    }
    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .photo-item.large {
        grid-column: span 2; /* Ô lớn chiếm 2 cột */
        grid-row: span 2;    /* Ô lớn chiếm 2 hàng */
    }
    .photo-item:hover img {
        transform: scale(1.1);
    }
    .photo-item span {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        background: rgba(0,0,0,0.7);
        color: #fff;
        padding: 8px;
        font-size: 0.85rem;
        text-align: center;
        opacity: 0;
        transition: 0.3s;
    }
    .photo-item:hover span {
        opacity: 1;
    }

    /* Responsive cho di động */
    @media (max-width: 768px) {
        .photo-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto;
        }
        .photo-item { height: 120px; }
        .photo-item.large { height: 200px; }
    }
</style>