header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Tăng padding để thanh navbar cao hơn */
}

/* Logo và Tên Thương hiệu */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-logo {
    font-size: 2.2em;
    font-weight: bold;
    color: #4CAF50; /* Màu xanh lá nổi bật */
    margin-right: 5px;
}

.brand-name {
    font-size: 1.5em;
    font-weight: 500;
    color: #333;
}

/* Menu Điều hướng */
#navbar a {
    color: #333;
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s;
}

#navbar a:hover {
    color: #FFC107; /* Màu vàng khi hover */
}

.nav-btn {
    margin-left: 20px;
    padding: 8px 15px;
}

/* Nút Menu Mobile */
.menu-toggle {
    display: none; /* Ẩn trên desktop */
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4CAF50;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* Hiển thị nút toggle và ẩn menu chính */
    .menu-toggle {
        display: block; 
    }

    #navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Điều chỉnh tùy theo chiều cao header */
        left: 0;
        background-color: white;
        box-shadow: 0 4px 4px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    #navbar.active {
        display: flex; /* Hiện menu khi có class active (dùng JS) */
    }

    #navbar a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    
    .nav-btn {
        margin: 15px 20px;
        text-align: center;
    }
}