:root {
    --primary-green: #2E7D32;
    --primary-red: #D32F2F;
    --accent-gold: #FFC107;
    --text-dark: #212121;
    --text-light: #F5F5F5;
    --bg-light: #FFF8E1;
    --bg-white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utilities */
.text-green { color: var(--primary-green) !important; }
.text-red { color: var(--primary-red) !important; }
.bg-green { background-color: var(--primary-green) !important; }
.bg-red { background-color: var(--primary-red) !important; }

.btn-custom-red {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-custom-red:hover {
    background-color: #b71c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.btn-custom-green {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-custom-green:hover {
    background-color: #1b5e20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-red) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 5px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

/* Stats */
.stats-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Carousel */
.offer-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    color: white;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.offer-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    width: 100%;
    padding: 20px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding-top: 50px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-green);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary-red);
    color: white;
}

/* Menu Page */
.menu-category-header {
    background: var(--primary-green);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.menu-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Unique Menu Item Animations */
.menu-category .d-flex,
.menu-category tbody tr {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

.menu-category .d-flex:nth-child(1), .menu-category tbody tr:nth-child(1) { animation-delay: 0.1s; }
.menu-category .d-flex:nth-child(2), .menu-category tbody tr:nth-child(2) { animation-delay: 0.2s; }
.menu-category .d-flex:nth-child(3), .menu-category tbody tr:nth-child(3) { animation-delay: 0.3s; }
.menu-category .d-flex:nth-child(4), .menu-category tbody tr:nth-child(4) { animation-delay: 0.4s; }
.menu-category .d-flex:nth-child(5), .menu-category tbody tr:nth-child(5) { animation-delay: 0.5s; }
.menu-category .d-flex:nth-child(6), .menu-category tbody tr:nth-child(6) { animation-delay: 0.6s; }
.menu-category .d-flex:nth-child(7), .menu-category tbody tr:nth-child(7) { animation-delay: 0.7s; }
.menu-category .d-flex:nth-child(8), .menu-category tbody tr:nth-child(8) { animation-delay: 0.8s; }
.menu-category tbody tr:nth-child(n+9) { animation-delay: 0.9s; }

.menu-category .d-flex::before,
.menu-category tbody tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.menu-category .d-flex:hover,
.menu-category tbody tr:hover {
    transform: scale(1.05) translateX(10px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-bottom-color: transparent !important;
    padding-left: 20px;
    color: var(--primary-green);
}

.menu-category .d-flex:hover::before,
.menu-category tbody tr:hover::before {
    left: 100%;
}

.menu-category .d-flex span:first-child,
.menu-category tbody tr td:first-child {
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-category .d-flex:hover span:first-child {
    color: var(--primary-green);
}

.menu-category .d-flex:hover .text-danger, 
.menu-category .d-flex:hover .text-success {
    transform: scale(1.1);
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .navbar-brand { font-size: 1.2rem; }
}
