.page-header-thucdon {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.95) 0%, rgba(183, 28, 28, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d32f2f" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-thucdon::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    position: relative;
    z-index: 1;
}

.page-header-thucdon h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInDown 0.6s ease;
    font-family: 'Playfair Display', serif;
}

.page-header-thucdon p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    transition: opacity 0.3s;
    text-decoration: none;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu-filters {
    background-color: white;
    padding: 2.5rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #e0e0e0;
    background-color: white;
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.25);
}
.menu-thucdon {
    padding: 2rem 0;
}

.menu-category {
    margin-bottom: 4rem;
    animation: slideInCategory 0.6s ease;
}

@keyframes slideInCategory {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    animation: slideIn 0.6s ease;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.menu-category h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 0.6s ease 0.2s forwards;
    opacity: 0;
}

@keyframes expandWidth {
    to {
        opacity: 1;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}
.menu-item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    animation: cardSlideIn 0.5s ease backwards;
}

.menu-item-card:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item-card:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item-card:hover {
    background-color: white;
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.2);
    border-color: rgba(211, 47, 47, 0.1);
}
.menu-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1);
}

.menu-item-card:hover .dish-image {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.08);
}
.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.menu-item-card:hover .menu-item-image::after {
    opacity: 1;
}
.dish-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
    animation: slideInLabel 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 2;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideInLabel {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
.menu-item-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fafafa 0%, white 100%);
}

.menu-item-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.menu-item-card:hover h3 {
    color: var(--secondary-color);
}

.menu-item-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.menu-item-card:hover p {
    color: var(--text-color);
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 0.4s ease;
}

@keyframes priceGlow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.cta {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.9) 0%, rgba(183, 28, 28, 0.9) 100%);
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-thucdon {
        padding: 4rem 2rem 2rem;
    }

    .page-header-thucdon h1 {
        font-size: 2rem;
    }

    .page-header-thucdon p {
        font-size: 1rem;
    }

    .menu-filters {
        padding: 1.5rem 0;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .menu-category h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .menu-item-image {
        height: 190px;
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .menu-item-card h3 {
        font-size: 1.1rem;
    }

    .menu-item-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header-thucdon {
        padding: 3rem 1rem 2rem;
    }

    .page-header-thucdon h1 {
        font-size: 1.5rem;
    }

    .page-header-thucdon p {
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .filter-buttons {
        gap: 0.3rem;
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .menu-category {
        margin-bottom: 2.5rem;
    }

    .menu-category h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-item-image {
        height: 170px;
    }

    .menu-item-content {
        padding: 1.2rem;
    }

    .menu-item-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .menu-item-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .price {
        font-size: 1.1rem;
    }

    .dish-label {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .cta {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons a {
        width: 100%;
    }

    .footer-login-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.7rem;
        margin-top: 0.8rem;
    }
}