:root {
    --primary-color: #c41e3a;
    --secondary-color: #d4af37;
    --accent-color: #2e8b57;
    --bg-light: #f8f5f2;
    --text-dark: #2d3748;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.menu-item-card {
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    display: inline-flex;
    align-items: center;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3182d;
}

/* Form focus styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* Loading animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-item-card {
        margin-bottom: 1.5rem;
    }
}