/* --- YOUR EXACT RESET & GLOBALS --- */
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #fff2f8;
            font-family: "overdozesans";
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
@font-face {
    font-family: "Vividly-Regular";
    src: url("./Vividly-Regular.otf") format("woff2"),
         url("./Vividly-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "overdozesans";
  src: url("./overdozesans.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "overdozesans";
  src: url("./overdozesans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vividly-Regular";
  src: local("Vividly-Regular");
}
/* --- SCROLLABLE PAGE CONTAINER --- */
.menu-screen {
    background-color: #fff2f8;
    width: 100%;
    max-width: 390px;
    min-height: 100vh;
    position: relative;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- HEADER & BREADCRUMB --- */
.header-wrapper {
    width: 100%;
    padding: 30px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.back-btn {
            font-family: "overdozesans";
    font-size: 22px;
    color: #5a1132;
    text-decoration: none;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffb7d9;
}
.breadcrumb {
    font-family: "Vividly-Regular", sans-serif;
    font-size: 14px;
    color: #5a1132;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffb7d9;
}
.breadcrumb span { color: #ffb7d9; }

/* --- MENU HERO --- */
.menu-hero {
    margin-top: 20px;
    width: 320px;
    background: #ffffff;
    border-radius: 50px;
    padding: 30px 20px;
    border: 3px solid #ffb7d9;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 183, 217, 0.2);
}
.hero-emoji {
    font-size: 48px;
    margin-bottom: 5px;
}
.menu-hero h1 {
            font-family: "overdozesans";
    font-size: 32px;
    color: #5a1132;
}
.menu-hero p {
            font-family: "overdozesans";
    color: #ffb7d9;
    font-size: 16px;
    margin-top: 5px;
}
.hero-badge {
    display: inline-block;
    background: #ffd9eb;
    color: #5a1132;
            font-family: "overdozesans";
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-top: 12px;
}

/* --- DAILY SPECIAL --- */
.daily-special {
    margin-top: 20px;
    width: 340px;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    border: 3px solid #ffb7d9;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 183, 217, 0.2);
}
.special-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffdbeb;
    color: #ffffff;
            font-family: "overdozesans";
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
}
.special-content {
    display: flex;
    gap: 15px;
    align-items: center;
}
.special-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff2f8;
    border-radius: 30px;
    padding: 5px;
}
.special-info h3 {
            font-family: "overdozesans";
    font-size: 18px;
    color: #5a1132;
}
.special-info p {
            font-family: "overdozesans";
    font-size: 13px;
    color: #ffb7d9;
    margin: 3px 0;
}
.special-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}
.special-price {
            font-family: "overdozesans";
    font-size: 18px;
    color: #5a1132;
}
.special-btn {
    background: #5a1132;
    color: #ffffff;
            font-family: "overdozesans";
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
}

/* --- FILTER TABS --- */
.filter-tabs {
    margin-top: 20px;
    width: 340px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-btn {
            font-family: "overdozesans";
    background: #ffffff;
    border: 2px solid #ffb7d9;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    color: #5a1132;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    flex-shrink: 0;
}
.filter-btn.active {
    background: #ffd6e9;
    color: #ffffff;
    border-color: #ffb9d8;
}

/* --- MENU GRID --- */
.menu-grid {
    margin-top: 20px;
    width: 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* --- MENU CARD --- */
.menu-card {
    background: #ffffff;
    border-radius: 40px;
    border: 3px solid #ffb7d9;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 183, 217, 0.15);
    transition: transform 0.2s;
}
.menu-card:active {
    transform: scale(0.95);
}
.card-img-wrapper {
    height: 130px;
    background: #fff2f8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
}
.card-img-wrapper img {
    width: 80%;
    height: auto;
    object-fit: contain;
}
.card-badge {
    position: absolute;
    top: 8px;
    right: 14px;
    background: #ffb7d9;
    color: #5a1132;
            font-family: "overdozesans";
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}
.card-info {
    padding: 12px 15px 15px 15px;
}
.card-info h3 {
            font-family: "overdozesans";
    font-size: 18px;
    color: #5a1132;
    margin-bottom: 4px;
}
.card-info p {
            font-family: "overdozesans";
    font-size: 12px;
    color: #ffb7d9;
    line-height: 1.3;
    margin-bottom: 10px;
    min-height: 32px;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffb7d9;
    padding-top: 10px;
}
.card-bottom .price {
            font-family: "overdozesans";
    font-size: 18px;
    color: #5a1132;
}
.card-bottom .emoji {
    font-size: 20px;
}

/* --- VIEW ALL BUTTON --- */
.view-all-btn {
    margin-top: 25px;
    background: transparent;
    border: 2px solid #ffb7d9;
    border-radius: 40px;
    padding: 12px 30px;
            font-family: "overdozesans";
    font-size: 16px;
    color: #5a1132;
    cursor: pointer;
    transition: 0.2s;
}
.view-all-btn:hover {
    background: #ffe5f1;
}

/* --- DECORATIVE FLOATING ELEMENTS --- */
.floating-icon {
    position: absolute;
    opacity: 0.4;
}
.floating-1 { top: 100px; left: 5px; width: 25px; }
.floating-2 { top: 350px; right: 10px; width: 30px; }
.floating-3 { bottom: 250px; left: 10px; width: 25px; }
.floating-4 { top: 150px; right: 20px; width: 30px; }
.floating-5 { bottom: 300px; right: 10px; width: 25px; }

/* --- YOUR EXACT BOTTOM NAV (UNCHANGED) --- */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    height: 96px;
    background-color: #ffffff;
    border-radius: 43px 43px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px 10px 10px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.02);
    z-index: 100;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.nav-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
}
.nav-item span {
            font-family: "overdozesans";
    font-size: 14px;
    color: #5a1132;
    text-align: center;
}
.nav-item.active span { color: #5a1132; }
.nav-item.active img { opacity: 0.7; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* 1. Initial hidden state */
.animate-on-scroll {
    opacity: 0 !important;
    transform: translateY(35px) !important;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, opacity;
}

/* 2. Active state when scrolled into view */
.scroll-reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 3. 🎀 DELAYS FOR A WAVE EFFECT */
.menu-hero { transition-delay: 0.0s !important; }
.daily-special { transition-delay: 0.1s !important; }
.filter-tabs { transition-delay: 0.2s !important; }
.menu-card:nth-child(1) { transition-delay: 0.2s !important; }
.menu-card:nth-child(2) { transition-delay: 0.3s !important; }
.menu-card:nth-child(3) { transition-delay: 0.4s !important; }
.menu-card:nth-child(4) { transition-delay: 0.5s !important; }
.menu-card:nth-child(5) { transition-delay: 0.6s !important; }
.menu-card:nth-child(6) { transition-delay: 0.7s !important; }
.view-all-btn { transition-delay: 0.8s !important; }