/* Menu Page Specific Styles */

.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../images/menu-header-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    color: white;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: #FAFAFA;
}

.menu-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    color: #4A4A4A;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--color-primary, #FF6B35);
    color: var(--color-primary, #FF6B35);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary, #FF6B35) 0%, var(--color-secondary, #FFB347) 100%);
    border-color: var(--color-primary, #FF6B35);
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary, #FF6B35);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-info {
    padding: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-info h3 {
    font-size: 1.25rem;
    color: #2C2C2C;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary, #FF6B35);
    margin-left: 1rem;
}

.menu-info p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #F5F5F5;
    color: #4A4A4A;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary, #FF6B35) 0%, var(--color-secondary, #FFB347) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
}
