/* ================================
   Menu Section
   ================================ */

.menu {
    padding: 7rem 2rem;
    background: #f8f5f0;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.menu h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #8b4513;
    font-style: italic;
    position: relative;
}

.menu h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ================================
   Menu Categories
   ================================ */

.menu-categories {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.menu-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.15);
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #8b4513;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.8rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-category > p {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ================================
   Menu Items
   ================================ */

.menu-item {
    margin-bottom: 1.8rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background-color 0.2s;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

.menu-item:hover {
    background-color: rgba(212, 175, 55, 0.03);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #2c2c2c;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
    padding-right: 85px;
}

.menu-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.menu-item .price {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    font-weight: 600;
    color: #8b4513;
    font-size: 1.1rem;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-item:hover .price {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}