@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #ff4757;
    --primary-glow: rgba(255, 71, 87, 0.25);
    --secondary: #1e293b;
    --accent: #ffa502;
    --glass-white: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.5);
    --card-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.09);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(160deg, #f0f4ff 0%, #fafafa 60%, #fff0f0 100%);
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px !important;
}

/* ── Background blobs ── */
.bg-blob {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(120px);
    animation: blobFloat 30s infinite alternate ease-in-out;
}

.bg-blob-1 {
    top: -350px;
    right: -250px;
    background: radial-gradient(circle, rgba(255, 71, 87, .12) 0%, transparent 70%);
}

.bg-blob-2 {
    bottom: -350px;
    left: -250px;
    background: radial-gradient(circle, rgba(59, 130, 246, .07) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(80px, 120px) scale(1.15);
    }
}

/* ── Header ── */
.premium-header {
    background: var(--glass-white);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.9rem 0;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--secondary);
    letter-spacing: -1px;
    text-decoration: none;
}

.brand-logo span {
    color: var(--primary);
}

/* ── Hero ── */
.hero-v2 {
    position: relative;
    height: 60vh;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(.55) contrast(1.1) saturate(1.2);
    animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.hero-text {
    z-index: 1;
    max-width: 860px;
    padding-bottom: 5rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: .75rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    animation: fadeInUp .9s var(--ease-out-expo);
}

.hero-text p {
    font-size: 1.05rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .9;
    animation: fadeInUp 1.1s var(--ease-out-expo);
}

.hero-badges {
    animation: fadeInUp 1.3s var(--ease-out-expo);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, .9);
    color: var(--secondary);
    font-weight: 700;
    font-size: .85rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

/* ── Info bar ── */
.info-bar {
    background: var(--secondary);
    color: white;
    padding: .75rem 0;
    font-size: .9rem;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.info-item i {
    color: var(--primary);
}

/* ── Category Nav ── */
.category-scroller {
    background: var(--glass-white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    scrollbar-width: none;
    overflow-x: auto;
}

.category-scroller::-webkit-scrollbar {
    display: none;
}

.nav-pill-custom {
    padding: .6rem 1.6rem;
    border-radius: 50px;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: .93rem;
    margin: 0 .35rem;
    border: 1.5px solid rgba(0, 0, 0, .06);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    transition: all .35s var(--ease-out-expo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.nav-pill-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-pill-custom.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 24px var(--primary-glow);
    transform: translateY(-3px);
}

/* ── Section Title ── */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), transparent);
    border-radius: 2px;
}

/* ── Product Cards ── */
.menu-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .5s var(--ease-out-expo);
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .14);
    border-color: rgba(255, 71, 87, .1);
}

/* Top accent line on hover */
.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), #ff6b81);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease-out-expo);
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.product-img-v2 {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-out-expo);
}

.menu-card:hover .product-img-v2 {
    transform: scale(1.07);
}

.card-body-custom {
    padding: 1.4rem;
}

.product-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .35rem;
    color: var(--secondary);
}

.product-desc {
    font-size: .87rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-v2 {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

.btn-incele {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border: none;
    border-radius: 50px;
    padding: .4rem 1.2rem;
    font-size: .82rem;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-incele:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--primary-glow);
    color: white;
}

/* ── Featured Section ── */
.featured-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 5rem 3rem;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 71, 87, .12) 0%, transparent 55%);
    pointer-events: none;
}

.featured-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
}

.featured-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    padding: 2rem;
    color: white;
    transition: all .4s var(--ease-out-expo);
}

.featured-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.featured-card img {
    border: 3px solid rgba(255, 255, 255, .15);
}

/* ── AOS ── */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: all .8s var(--ease-out-expo);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ── Footer ── */
.premium-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 5rem 0 3rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.premium-footer h5 {
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: .9rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: .2rem 0;
    transition: all .3s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-item {
    color: #cbd5e1;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: .75rem;
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.footer-contact-item i {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
    margin-top: .15rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all .3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-4px);
}

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

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

@media (max-width: 768px) {
    .hero-v2 {
        height: 50vh;
    }

    .featured-section {
        padding: 3rem 1.5rem;
    }

    .category-title {
        font-size: 1.6rem;
    }
}