/* ===================================
   MENU PAGE STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-yellow), var(--bright-yellow));
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(0, 188, 212, 0.3) 50px, transparent 50px),
        radial-gradient(circle at 70% 30%, rgba(0, 188, 212, 0.3) 70px, transparent 70px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 40px, transparent 40px);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 4.5rem;
    color: var(--black);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px var(--white);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--black);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Menu Navigation Tabs */
.menu-nav {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.menu-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 15px 30px;
    background: var(--gray-light);
    border: 3px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.menu-tab:hover {
    background: var(--primary-yellow);
    border-color: var(--black);
    transform: translateY(-3px);
}

.menu-tab.active {
    background: var(--black);
    color: var(--primary-yellow);
    border-color: var(--black);
}

/* Menu Sections */
.menu-section {
    padding: 80px 0;
    display: none;
}

.menu-section.active {
    display: block;
}

#slushbar {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(255, 215, 0, 0.05));
}

#loft {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 188, 212, 0.05));
}

#bites {
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-intro .section-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-top: 20px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan-blue), var(--primary-yellow));
    transition: width 0.3s ease;
}

.menu-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
    border-color: var(--cyan-blue);
}

.menu-item.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.9));
}

.menu-item.premium::before {
    background: linear-gradient(180deg, var(--primary-yellow), var(--dark-yellow));
}

.menu-item.premium:hover {
    border-color: var(--primary-yellow);
}

.menu-item.food {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 255, 255, 0.9));
}

.menu-item.food::before {
    background: linear-gradient(180deg, var(--cyan-blue), var(--dark-blue));
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.item-name {
    font-size: 1.8rem;
    color: var(--black);
    flex: 1;
    margin-right: 10px;
}

.item-badge {
    background: var(--black);
    color: var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-item.premium .item-badge {
    background: var(--primary-yellow);
    color: var(--black);
}

.menu-item.food .item-badge {
    background: var(--cyan-blue);
    color: var(--white);
}

.item-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.item-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: var(--gray-light);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--cyan-blue);
}

.menu-item.premium .feature-tag {
    border-color: var(--primary-yellow);
}

.menu-item.food .feature-tag {
    border-color: var(--cyan-blue);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cyan-blue), var(--dark-blue));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.3) 100px, transparent 100px),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.3) 120px, transparent 120px);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px var(--black);
}

.cta-text {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-title {
        font-size: 3rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-tab {
        width: 100%;
    }

    .section-intro .section-title {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-intro .section-title {
        font-size: 2rem;
    }

    .item-header {
        flex-direction: column;
        gap: 10px;
    }

    .item-name {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}
