body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
}

/* Header Styles */
.header-gradient {
    background: white;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #d4af37;
}

.header-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.logo-container {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 50%, #d4af37 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Tab Styles */
.tab-button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: white;
    border: 2px solid transparent;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 45, 18, 0.2);
    border-color: #d4af37;
}

.tab-button.active {
    background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(124, 45, 18, 0.4);
    border-color: #d4af37;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e5c3, #d4af37);
}

/* Menu Card Styles */
.menu-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e5c3, #d4af37);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-container {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Date Badge */
.date-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #1a1a1a;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Section Titles */
.section-title {
    color: #7c2d12;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #f4e5c3);
    border-radius: 2px;
}

/* Accent Text */
.accent-text {
    background: linear-gradient(135deg, #7c2d12, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Footer Styles */
.footer-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #d4af37;
}

.contact-link {
    color: #d4af37;
    transition: all 0.3s;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e5c3);
    transition: width 0.3s;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: #f4e5c3;
}

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}