/* Menu Page Specific Styles */
.menu-hero {
    background: linear-gradient(135deg, 
        rgba(75, 30, 47, 0.95) 0%, 
        rgba(99, 50, 68, 0.8) 50%, 
        rgba(75, 30, 47, 0.95) 100%
    );
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="50" cy="50" r="0.5" fill="rgba(254,246,228,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: floating 20s ease-in-out infinite;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.menu-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--cream);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.menu-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.menu-container {
    padding: 6rem 0;
    position: relative;
}

.menu-category {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-category.animate {
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.category-description {
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.9;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.menu-item {
    background: rgba(99, 50, 68, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.1);
}

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

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    opacity: 0.5;
    background: rgba(212, 175, 55, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), #e6c558);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 3;
}

.menu-item-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    line-height: 1.2;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.item-description {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-ingredients, .item-calories {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-ingredients strong, .item-calories strong {
    color: var(--gold);
    opacity: 1;
}

.chef-recommendation {
    background: rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.recommendation-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.empty-category {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(99, 50, 68, 0.1);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    margin: 2rem 0;
}

.empty-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.empty-text {
    color: var(--cream);
    opacity: 0.7;
    font-size: 1.1rem;
}

.reservation-cta {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #e6c558);
    color: var(--burgundy);
    border: 2px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: var(--burgundy);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--burgundy);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(254, 246, 228, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-hero {
        padding: 6rem 0 4rem;
    }
    
    .menu-container {
        padding: 4rem 0;
    }
    
    .menu-category {
        margin-bottom: 4rem;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-price {
        align-self: flex-end;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item-content {
        padding: 1.5rem;
    }
    
    .item-name {
        font-size: 1.3rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

/* Animation for staggered menu items */
.menu-item {
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.menu-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(even) {
    animation-delay: 0.2s;
}