:root {
    --primary-color: #4a151c;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: #1a1a1a;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 96px;
}

/* ──────────────────────────────────────────
   FIXED BLURRED BACKGROUND
────────────────────────────────────────── */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url('../assets/bg-blur.jpg') center / cover no-repeat;
    filter: blur(24px) brightness(0.80) saturate(1.1);
    transform: scale(1.08);
}

.bg-glass-tint {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.55);
}

/* ──────────────────────────────────────────
   CONTAINER — used inside every section
────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ──────────────────────────────────────────
   WHITE GLASS PANEL — wraps each section
────────────────────────────────────────── */
.glass-section {
    background: transparent;
}

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 80px);
    max-width: 1160px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 60px;
    border: 1.5px solid rgba(255, 255, 255, 0.90);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 1px 0 rgba(255, 255, 255, 0.60) inset;
}

.header-inner {
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

.cart-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.cart-fab:hover {
    transform: scale(1.1);
    background: #3c1117;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 76px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--primary-color);
    margin-bottom: 32px;
    letter-spacing: -1px;
    max-width: 800px;
}

.hero-desc {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    transition: background 0.2s, transform 0.15s;
}

.btn-dark:hover {
    background: #3c1117;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.feature-item .material-icons-round {
    font-size: 18px;
    color: var(--primary-color);
}

/* Swiper Animations */
.hero-swiper-section {
    padding: 0;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
}

/* ── SLIDE-UP title: strong overshoot spring ── */
[data-animate="slide-up"] {
    opacity: 0;
    transform: translateY(60px) skewY(3deg);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── FADE-IN desc + actions: staggered ── */
[data-animate="fade-in"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

/* ── ZOOM-IN image: scale + rotate pop ── */
[data-animate="zoom-in"] {
    opacity: 0;
    transform: scale(0.78) rotate(-4deg);
    transition: opacity 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
        transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

/* ── Active slide triggers ── */
.swiper-slide-active [data-animate="slide-up"] {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

.swiper-slide-active [data-animate="fade-in"] {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active [data-animate="zoom-in"] {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ── Hero image ring — pulsing glow ── */
.hero-right {
    flex-shrink: 0;
}

.hero-illustration {
    width: 500px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(74, 21, 28, 0.15));
}

/* ── Swiper Pagination — animated pill bullets ── */
.swiper-pagination {
    bottom: 28px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50px !important;
    background: rgba(74, 21, 28, 0.22) !important;
    opacity: 1 !important;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease !important;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    width: 34px !important;
    background: var(--primary-color) !important;
    box-shadow: 0 2px 12px rgba(74, 21, 28, 0.40) !important;
}

/* hide default swiper nav arrows globally */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

/* ──────────────────────────────────────────
   FOOD CARDS + DELIVERY
────────────────────────────────────────── */
.cards-delivery-inner {
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

.cards-col {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding-top: 56px;
    flex-shrink: 0;
}

.food-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.90);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    padding: 16px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 205px;
}

.food-circle {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    margin-top: -54px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.food-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    color: var(--primary-color);
    margin-bottom: 7px;
}

.card-desc {
    font-size: 11px;
    color: #999;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

.cart-round {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-round:hover {
    background: #3c1117;
}

.delivery-text {
    flex: 1;
    padding-top: 8px;
}

.sec-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sec-para {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #777;
    line-height: 1.80;
}

/* ──────────────────────────────────────────
   NEW MENU
────────────────────────────────────────── */
.new-menu-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.new-menu-text {
    flex: 0 0 54%;
}

.new-menu-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-right: 20px;
}

.dish-circle {
    position: relative;
    display: inline-block;
}

.dish-circle-img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.90);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.dish-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    top: -14px;
    right: -18px;
    background: var(--primary-color);
    color: #fff;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}

/* ──────────────────────────────────────────
   APP SECTION
────────────────────────────────────────── */
.app-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.phones-wrap {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.phone-mock {
    width: 212px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
    border: 6px solid #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 16px;
    font-family: var(--font-secondary);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.15s;
}

.store-btn:hover {
    background: #3c1117;
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   RESERVATION BANNER
────────────────────────────────────────── */
.reservation-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.reservation-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-desc {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 820px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 36px;
}

.footer-col-title {
    font-family: var(--font-secondary);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #555;
    margin-bottom: 16px;
}

.footer-link {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-text {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

/* ──────────────────────────────────────────
   SECTION SPACING
────────────────────────────────────────── */
.sec-pad {
    padding: 80px 0;
}

.sec-pad-sm {
    padding: 50px 0;
}

/* ──────────────────────────────────────────
   FLOATING ANIMATIONS
────────────────────────────────────────── */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-delayed {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-slow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

/* ──────────────────────────────────────────
   MOBILE RESPONSIVENESS
────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-header {
        width: calc(100% - 32px);
    }

    .header-inner {
        padding: 12px 20px;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .cards-delivery-inner,
    .new-menu-inner,
    .app-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left,
    .new-menu-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions,
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .new-menu-img-wrap {
        padding-right: 0;
    }

    .dish-circle-img {
        width: 250px;
        height: 250px;
    }

    .cards-col {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding-top: 0;
    }

    .food-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .sec-title {
        font-size: 32px;
    }

    .hero-illustration {
        width: 100%;
        max-width: 400px;
    }

    body {
        padding-top: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .swiper-pagination {
        display: none !important;
    }
}

/* Responsive Header Styles */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-only-btn {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        border-top: 1px solid #f0f0f0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 40;
    }

    .header-nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #4a151c;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-only-btn {
        margin-top: 16px;
    }
}