/* Complete Menu Page Styles - All-in-One CSS File */

/* Body Background - Same as Homepage */
body {
    background: var(--black);
    color: var(--white);
    font-family: 'Schoolbell', cursive;
}

/* ===== MENU HERO SECTION (Simple Appetizing Version) ===== */
.menu-hero-simple {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About-style gradient background (no photo) */
.menu-hero-simple .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
    z-index: 1;
}

.menu-hero-simple .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(245, 155, 120, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

/* Floating emoji elements like About page */
.menu-hero-simple .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.menu-hero-simple .float-element {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0.25;
    animation: floatAround 20s infinite linear;
}

.menu-hero-simple .element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.menu-hero-simple .element-2 { top: 60%; left: 80%; animation-delay: -4s; }
.menu-hero-simple .element-3 { top: 35%; left: 70%; animation-delay: -8s; }
.menu-hero-simple .element-4 { top: 78%; left: 22%; animation-delay: -12s; }
.menu-hero-simple .element-5 { top: 50%; left: 50%; animation-delay: -16s; }

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
    25% { transform: translate(50px, -30px) rotate(90deg); opacity: 0.35; }
    50% { transform: translate(-20px, -60px) rotate(180deg); opacity: 0.3; }
    75% { transform: translate(-40px, 20px) rotate(270deg); opacity: 0.45; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Schoolbell', cursive;
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, var(--dutch-white), var(--atomic-tangerine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(245, 155, 120, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(245, 155, 120, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--dutch-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-tagline {
    margin-top: 1rem;
}

.tagline-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--atomic-tangerine);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 1s both;
    padding: 10px 20px;
    border: 2px solid var(--atomic-tangerine);
    border-radius: 25px;
    background: rgba(245, 155, 120, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FILTER SECTION ===== */
.menu-filter-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-bottom: 3px solid var(--atomic-tangerine);
}

.menu-filter-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.8rem;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(245, 155, 120, 0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(252, 88, 62, 0.18), transparent 55%),
                rgba(0, 0, 0, 0.85);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(245, 155, 120, 0.4);
}

.filter-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem 1.2rem;
    justify-items: center;
}

.filter-btn {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 2px solid rgba(255,255,255,0.85);
    color: var(--white);
    padding: 0.8rem 1.7rem;
    border-radius: 30px;
    font-family: 'Schoolbell', cursive;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    letter-spacing: 0.2px;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.25), 0 6px 18px rgba(245, 155, 120, 0.08);
    backdrop-filter: blur(6px);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--atomic-tangerine), var(--portland-orange));
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--atomic-tangerine);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(245, 155, 120, 0.28), 0 0 0 1px rgba(245,155,120,0.25);
}

/* Active pill filled look */
.filter-btn.active {
    background: linear-gradient(135deg, var(--atomic-tangerine), var(--portland-orange));
    border-color: transparent;
    color: #1a0f0b;
}

/* Focus-visible for keyboard accessibility */
.filter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 88, 62, 0.45);
}

/* ===== MENU SECTION ===== */
.innovative-menu-section {
    padding: 4rem 0;
    background: var(--black);
}

.menu-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-category {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.menu-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dutch-white);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.category-title {
    font-family: 'Schoolbell', cursive;
    font-size: 1.8rem;
    color: var(--dutch-white);
    margin: 0;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--atomic-tangerine), var(--portland-orange));
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item-card {
    background: var(--dutch-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(245, 155, 120, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.menu-item-card:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.menu-item-card:hover {
    transform: translateY(-3px);
    border-color: var(--atomic-tangerine);
    box-shadow: 0 10px 25px rgba(245, 155, 120, 0.2);
}

/* Menu Items (Simple Layout like Index Page) */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
}

.menu-item.hovered {
    transform: translateX(5px);
    background: rgba(246, 221, 191, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.menu-item.clicked {
    transform: scale(0.98);
    background: rgba(245, 155, 120, 0.1);
}

.dish-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.item-image.hover-effect {
    transform: scale(1.1);
    filter: brightness(1.2);
    box-shadow: 0 5px 15px rgba(245, 155, 120, 0.4);
}

.item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-details h4 {
    font-family: 'Schoolbell', cursive;
    font-size: 1.2rem;
    color: var(--dutch-white);
    margin: 0 0 5px 0;
}

.item-details p {
    color: rgba(246, 221, 191, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.item-price {
    font-family: 'Schoolbell', cursive;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--portland-orange);
    margin-left: 20px;
}

/* ===== MENU FOOTER NOTE ===== */
.menu-footer-note {
    margin-top: 4rem;
    text-align: center;
}

.customization-card {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.customization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--portland-orange));
    opacity: 0.1;
    z-index: 0;
}

.customization-icon {
    font-size: 3rem;
    color: var(--atomic-tangerine);
    margin-bottom: 1rem;
}

.customization-content {
    position: relative;
    z-index: 1;
}

.customization-content h4 {
    font-family: 'Schoolbell', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dutch-white);
}

.customization-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    background: transparent;
    border: 2px solid var(--atomic-tangerine);
    color: var(--atomic-tangerine);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Schoolbell', cursive;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--atomic-tangerine), var(--portland-orange));
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 155, 120, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Hero Section */
    .menu-hero-simple {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tagline-text {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    /* Filter Section */
    .menu-filter-wrap {
        padding: 1.2rem 0.6rem 1.3rem;
        border-radius: 22px;
    }

    .filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.7rem;
        padding: 0.2rem 0.4rem 0.4rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .filter-tabs::-webkit-scrollbar-thumb {
        background: rgba(245, 155, 120, 0.6);
        border-radius: 999px;
    }

    .filter-btn {
        flex: 0 0 auto;
        font-size: 0.9rem;
        padding: 0.55rem 1.05rem;
        white-space: nowrap;
        scroll-snap-align: start;
    }
    
    /* Swipe hint arrow */
    .filter-tabs::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: linear-gradient(90deg, transparent, rgba(245, 155, 120, 0.3));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        animation: swipeHintPulse 2.5s ease-in-out infinite;
        z-index: 3;
    }
    
    .filter-tabs::before {
        content: '›';
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.6rem;
        color: var(--atomic-tangerine);
        font-weight: bold;
        pointer-events: none;
        animation: swipeHintSlide 2.5s ease-in-out infinite;
        z-index: 4;
        text-shadow: 0 0 6px var(--atomic-tangerine);
    }
    
    @keyframes swipeHintPulse {
        0%, 80%, 100% { opacity: 0; transform: translateY(-50%) scale(0.8); }
        20%, 60% { opacity: 1; transform: translateY(-50%) scale(1); }
    }
    
    @keyframes swipeHintSlide {
        0%, 80%, 100% { opacity: 0; transform: translateY(-50%) translateX(0); }
        20%, 60% { opacity: 1; transform: translateY(-50%) translateX(4px); }
    }
    
    /* Menu Items */
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .menu-hero-simple {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tagline-text {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    /* Menu Categories */
    .category-title {
        font-size: 1.5rem;
    }
    
    /* Menu Items */
    .dish-image {
        width: 60px;
        height: 45px;
    }
    
    .item-details h4 {
        font-size: 1rem;
    }
    
    .item-details p {
        font-size: 0.8rem;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
}
