/* Menu Page Styles */
.menu-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--bg-primary);
}

.menu-header {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-secondary);
    margin-bottom: 2rem;
}

.menu-header h1 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-header p {
    color: var(--text-secondary);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.tab-button {
    background-color: var(--accent-dark);
    border: none;
    color: var(--text-primary);
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-button i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.tab-button.active {
    background-color: var(--yellow);
    color: var(--bg-primary);
}

/* Menu Sections */
.menu-section {
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
}

.menu-section.active {
    display: block;
}

.menu-section h2 {
    color: var(--yellow);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.menu-subsection {
    margin-bottom: 3rem;
}

.menu-subsection h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

/* Menu Items */
.menu-items {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    background-color: var(--accent-dark);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--yellow), var(--blue), var(--red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before {
    opacity: 1;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-header h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    flex-grow: 1;
}

.price {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.menu-item-content {
    flex: 1;
    padding-right: 1rem;
}

.menu-item-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 2px solid #ff0000;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Popular Badge */
.badge {
    background-color: var(--red);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Category Icons */
.icon-drink {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l-5 9h10l-5-9zM7 12v8h10v-8H7z'/%3E%3C/svg%3E");
}

.icon-appetizer {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z'/%3E%3C/svg%3E");
}

.icon-main {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z'/%3E%3C/svg%3E");
}

.icon-dessert {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99l-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z'/%3E%3C/svg%3E");
}

/* Responsive Design */
@media (min-width: 768px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2rem;
    }

    .tab-button {
        justify-content: center;
    }

    .menu-header h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 