:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                    url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.menu-section {
    padding: 4rem 0;
}

.menu-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item h4 {
    color: var(--primary-color);
    margin-top: 1rem;
    font-size: 1.4rem;
}

.menu-item .description {
    color: #666;
    font-size: 0.95rem;
    min-height: 60px;
}

.menu-item .ingredients {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.menu-item .price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.menu-item .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.special-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.option-card {
    height: 200px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    text-decoration: none;
    min-width: 100%;
}

.option-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    filter: brightness(1.08);
}

.option-overlay {
    background: rgba(0,0,0,0.60);
    padding: 1.2em 1em;
    border-radius: 0.5em;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero {
        height: 40vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-item .description {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .option-card {
        height: 140px;
        font-size: 1.1rem;
    }

    .option-overlay {
        font-size: 1.1rem;
        padding: 0.7em 0.5em;
    }
}

@media (max-width: 575px) {
    .option-card {
        height: 90px;
        font-size: 1rem;
    }

    .option-overlay {
        font-size: 1rem;
        padding: 0.5em 0.5em;
    }
}

.main-options .row > div {
    display: flex;
}

.main-options .option-card {
    flex: 1 1 auto;
}