:root {
    --primary: #1fb5a2;
    --primary-light: #87dad0;
    --primary-dark: #079687;
    --accent: #ffb347;
    --accent-light: #ffd180;
    --bg-light: #f2f2f2;
    --bg-card: #ffffff;
    --bg-card-alt: #f8f8f8;
    --text-dark: #333333;
    --text-muted: #666666;
    --text-white: #ffffff;
    --nav-link: #333333;
    --nav-link-hover: #1fb5a2;
    --nav-link-active: #1fb5a2;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(31, 181, 162, 0.2);
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --transition: all 0.3s ease;
    --container-padding: clamp(1rem, 5vw, 2rem);
}

.dark-theme {
    --primary: #2ac9b5;
    --primary-light: #5fd9c9;
    --primary-dark: #1a8d7d;
    --bg-light: #121212;
    --bg-card: #1e2a2a;
    --bg-card-alt: #253333;
    --text-dark: #e0f2f1;
    --text-muted: #a0c0c0;
    --nav-link: #c0e0e0;
    --nav-link-hover: #5fd9c9;
    --nav-link-active: #5fd9c9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Header Styles - NO UNDERLINES */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text .momo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--nav-link);
    transition: var(--transition);
    text-decoration: none;
}

.navbar a:hover {
    color: var(--nav-link-hover);
    text-decoration: none;
}

.navbar a.active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.navbar a.active::before {
    content: '✦';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.header-actions {
    display: flex;
    gap: 10px;

    /* Featured Button Styles */
    .featured-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none !important;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .featured-btn i {
        font-size: 1.1rem;
        color: #ffd700;
        transition: var(--transition);
    }

    .featured-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .featured-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(31, 181, 162, 0.4);
    }

    .featured-btn:hover::before {
        opacity: 1;
    }

    .featured-btn:hover i {
        transform: scale(1.1);
        animation: starGlow 0.5s ease;
    }

    @keyframes starGlow {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.3);
            text-shadow: 0 0 10px gold;
        }

        100% {
            transform: scale(1.1);
        }
    }

    /* Dark theme featured button */
    .dark-theme .featured-btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--bg-light);
    }

    .dark-theme .featured-btn i {
        color: #ffd700;
    }

    .dark-theme .featured-btn:hover {
        box-shadow: 0 10px 25px rgba(42, 201, 181, 0.5);
    }
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

.menu-toggle {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--primary);
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-header h3 {
    color: var(--text-dark);
}

.close-search {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.search-result-item:hover {
    background: var(--bg-light);
    text-decoration: none;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.search-result-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.search-result-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.search-categories {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
}

.search-category-title {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    border: 1px solid var(--primary-light);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
}

.search-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Buttons */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
}

.btn-download:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
    text-decoration: none;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #079687 100%);
    position: relative;
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(31, 181, 162, 0.2) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(31, 181, 162, 0.2) 0%, transparent 30%);
}

.page-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 50px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

/* Hero Features - SAME LINE with flex wrap and equal width */
.page-hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--primary);
    color: var(--text-white);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: none;
    font-weight: 500;
    min-width: 150px;
    white-space: nowrap;
}

.feature-fixed i {
    font-size: 1.1rem;
    color: white;
}

.hero-download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Menu Navigation - NO UNDERLINES */
.menu-nav {
    background: var(--bg-card);
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 99;
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.menu-nav a {
    padding: 8px 25px;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    color: var(--nav-link);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.menu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.menu-nav a:hover::before,
.menu-nav a.active::before {
    opacity: 1;
}

.menu-nav a:hover,
.menu-nav a.active {
    color: white;
    text-decoration: none;
}

/* Menu Sections */
.menu-section {
    padding: 60px 0;
}

.menu-section:nth-child(even) {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    opacity: 0.3;
    z-index: -1;
}

.section-info {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

/* Menu Items with Left Border Hover */
.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card-alt);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.menu-item:hover::before {
    height: 100%;
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
    text-decoration: none;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.item-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dietary {
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
}

.addon {
    color: var(--primary);
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

/* Drinks Grid */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 40px;
}

.drinks-category {
    background: var(--bg-card-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.drinks-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.drinks-category:hover::before {
    opacity: 0.05;
}

.drinks-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary);
    text-decoration: none;
}

.drinks-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.drinks-category ul {
    position: relative;
    z-index: 1;
    list-style: none;
}

.drinks-category ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.drinks-category ul li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
}

/* Footer - NO UNDERLINES */
.footer {
    background: var(--bg-card);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-img {
    height: 50px;
}

.footer-logo-text .momo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--primary-light);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    text-decoration: none;
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.footer ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-hours ul li {
    color: var(--text-muted);
}

.footer-hours ul li span {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--primary-light);
    margin-top: 30px;
    color: var(--text-muted);
}

/* Dark Theme */
.dark-theme .menu-nav a {
    color: var(--nav-link);
}

.dark-theme .menu-nav a:hover,
.dark-theme .menu-nav a.active {
    color: white;
}

.dark-theme .menu-item {
    background: var(--bg-card-alt);
}

.dark-theme .drinks-category {
    background: var(--bg-card-alt);
}

.dark-theme .feature-fixed {
    background: var(--primary);
    color: var(--bg-light);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        transform: scaleY(0);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 2px solid var(--primary);
        z-index: 1000;
    }

    .navbar.active {
        transform: scaleY(1);
        opacity: 1;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-nav a {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .feature-fixed {
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 550px) {
    .page-hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-fixed {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}