/* Header dạng Card giống Dashboard */
.header-dashboard {
    background: rgba(30, 41, 59, 0.8);
    /* Slate-800 với độ trong suốt */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    /* rounded-2xl */
}

/* Hiệu ứng khi cuộn: Header thu nhỏ lại */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F1EE;
    color: #1A1A1A;
}

.serif {
    font-family: 'Playfair Display', serif;
}

/* Header Sticky Logic */
header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Trạng thái khi cuộn chuột (sẽ dùng JS thêm class này) */
header.scrolled {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: rgba(244, 241, 238, 0.8); /* Màu nền trùng với body nhưng trong suốt */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #1A1A1A;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}