/* Menu page specific styles */
.menu-section {
    margin-bottom: 60px;
}
    
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #683802;
}
    
.section-header h2 {
    font-size: 2.5rem;
    color: #683802;
    margin-bottom: 10px;
}
    
.section-header p {
    color: #666;
    font-size: 1.1rem;
}
    
    /* Gallery menu styles */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
}
    
.menu-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
}
    
.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
    
.menu-item-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
}
    
.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
    
.menu-item:hover .menu-item-img img {
    transform: scale(1.05);
}
    
.menu-item-content {
    padding: 20px;
}
    
.menu-item-title {
    font-size: 1.1rem;
    color: #683802;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}
    
.menu-item-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.85rem;
    text-align: center;
}
    
    /* Seasonal menu styles */
.seasonal-menu-list {
    max-width: 800px;
    margin: 0 auto;
}
    
.seasonal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
    
.seasonal-item:last-child {
    border-bottom: none;
}
    
.seasonal-item-name {
    font-size: 1.1rem;
    color: #683802;
    font-weight: 500;
}
    
.seasonal-item-price {
    color: #c9a96e;
    font-weight: 600;
}
    
    /* Menu note section */
.menu-note {
    background: #f9f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}
    
.menu-note h3 {
    color: #683802;
    margin-bottom: 10px;
    text-align: left;
}
    
.menu-note h5 {
    color: #666;
    line-height: 1.6;
    text-emphasis: left;
}
    
    /* Navigation anchors */
.menu-anchor {
    scroll-margin-top: 100px;
}
    
    /* Responsive design */
@media (max-width: 768px) {
    .menu-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    
    .seasonal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
}
    
@media (max-width: 480px) {
    .menu-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }

    .menu-item-content {
        padding: 15px;
    }
    
    .menu-item-title {
        font-size: 1.1rem;
    }
    
    .menu-item-desc {
        font-size: 0.9rem;
    }
    
    .seasonal-item-name {
        font-size: 1rem;
    }
}