/* Catering Menu Pages CSS */

.menu-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 8px;
}

.menu-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.menu-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.menu-sections {
    margin-bottom: 60px;
}

.section-container {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.section-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #667eea;
}

.section-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.section-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item-card {
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-left-color: #764ba2;
}

.menu-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.menu-item-description {
    color: #666;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 12px;
}

.menu-item-price {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
}

.no-items {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .menu-hero h1 {
        font-size: 1.8rem;
    }

    .menu-hero p {
        font-size: 1rem;
    }

    .section-container {
        padding: 20px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #667eea;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }
}
