/* Menu Styles CSS */

/* Menu Page Header */
.menu-page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    text-align: center;
    padding: 60px 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Menu Categories */
.menu-categories {
    padding: 60px 0;
    background-color: #000000;
}

.menu-category {
    margin-bottom: 40px;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}

.category-header {
    padding: 30px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.category-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
}

.menu-items {
    padding: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.menu-item:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-left: 25px;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    margin-right: 20px;
    text-shadow: none;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    min-width: 60px;
    text-align: center;
    white-space: nowrap;
    align-self: center;
}

/* Responsive Design for Menu Categories */
@media (max-width: 768px) {
    .menu-categories {
        padding: 40px 0;
        background-color: #000000;
    }
    
    .category-header {
        padding: 25px 15px;
    }
    
    .category-image {
        display: none;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .menu-items {
        padding: 20px;
    }
    
    .menu-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .item-name {
        margin-right: 10px;
        flex: 1;
        color: #ffffff;
    }
    
    .item-price {
        flex-shrink: 0;
        white-space: nowrap;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
    }
    
    .item-name {
        font-size: 1rem;
    }
    
    .item-price {
        font-size: 1rem;
        padding: 4px 12px;
    }
}