@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&display=swap');

/* =============================================
   DESIGN TOKENS — Sky Blue & Kulfi Palette
   ============================================= */
:root {
    /* Core colors from animation frames */
    --sky-blue: #5AACCF;
    --sky-light: #A8D8EE;
    --sky-pale: #D9EFF8;
    --cream: #FDF8F2;
    --milk-white: #F5F0E8;
    --pistachio: #8BA86B;
    --pistachio-lt: #B8CFA0;
    --saffron: #C8882A;
    --saffron-lt: #E6A840;
    --deep-navy: #0D2030;
    --text-dark: #1A2E3B;
    --text-mid: #3E5565;
    --text-soft: rgba(26, 46, 59, 0.6);

    --primary-color: var(--saffron);
    --accent-color: var(--sky-blue);
    --bg-page: linear-gradient(160deg, #D6EEF8 0%, #EBF6FB 30%, #F5F0E8 70%, #FDF8F2 100%);
    --bg-dark: #0D2030;
}

/* =============================================
   BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    /* Use transparent background so the fixed canvas shows through */
    background: transparent;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* =============================================
   FLOATING PILL NAVIGATION
   ============================================= */
.glass-header {
    display: none;
}

.logo {
    display: none;
}

.glass-header nav {
    display: none;
}

.glass-header .hamburger {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}

.pill-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    display: flex !important;
    align-items: center;
    gap: 2px;
    background: rgba(13, 32, 48, 0.80);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 8px 14px;
    box-shadow:
        0 4px 30px rgba(13, 32, 48, 0.30),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.pill-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(210, 230, 245, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pill-nav a:hover {
    color: #ffffff;
    background: rgba(90, 172, 207, 0.22);
    transform: translateY(-1px);
}

.pill-nav a.active {
    color: #ffffff;
    background: rgba(90, 172, 207, 0.20);
}

.pill-nav a.admin-link {
    color: rgba(220, 80, 60, 0.85);
}

.pill-nav a.admin-link:hover {
    color: #ff5544;
    background: rgba(255, 60, 40, 0.14);
}

.pill-nav .nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 4px;
    flex-shrink: 0;
}

/* Tooltip */
.pill-nav a[data-tip] {
    position: relative;
}

.pill-nav a[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(13, 32, 48, 0.95);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pill-nav a[data-tip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .pill-nav {
        top: auto;
        bottom: 20px;
        padding: 8px 14px;
        gap: 2px;
    }

    .pill-nav a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .pill-nav a[data-tip]::after {
        top: auto;
        bottom: calc(100% + 10px);
        transform: translateX(-50%) translateY(-4px);
    }

    .pill-nav a[data-tip]:hover::after {
        transform: translateX(-50%) translateY(0);
    }

    /* Move scroll indicator above nav pill on mobile */
    .scroll-indicator {
        bottom: 22vh !important;
        font-size: 0.65rem;
        letter-spacing: 3px;
        padding: 8px 20px 5px;
        z-index: 1050 !important;
        transition: opacity 0.5s ease;
    }
}

/* =============================================
   PARALLAX BACKGROUNDS
   ============================================= */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.leaves {
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 168, 107, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 75%, rgba(90, 172, 207, 0.12) 0%, transparent 40%);
}

.mango-chunks {
    background:
        radial-gradient(circle at 80% 25%, rgba(200, 136, 42, 0.14) 0%, transparent 30%),
        radial-gradient(circle at 18% 72%, rgba(90, 172, 207, 0.12) 0%, transparent 40%);
}

/* =============================================
   HERO SCROLL SECTION
   ============================================= */
.scroll-container {
    position: relative;
    height: 600vh;
}

.hero-bottom-fade {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42vh;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(235, 246, 251, 0.45) 40%,
            rgba(235, 246, 251, 0.90) 75%,
            rgba(245, 240, 232, 1.00) 100%);
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s linear;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

#hero-canvas {
    width: 100vw;
    height: 100vh;
    filter: contrast(1.06) saturate(1.12) brightness(1.02);
}

/* Hero Text */
.hero-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 9vw, 8rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: clamp(6px, 3vw, 22px);
    text-transform: uppercase;

    /* Golden saffron → cream gradient text */
    background: linear-gradient(135deg,
            #fff5e0 0%,
            #f4c46a 25%,
            #E8A030 50%,
            #f4c46a 75%,
            #fff5e0 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Animate the shimmer */
    animation: gold-shimmer 4s linear infinite;

    /* Glow punch */
    filter: drop-shadow(0 0 18px rgba(232, 160, 48, 0.55)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.40));
}

/* Decorative accent line under h1 */
.hero-text h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, #E8A030, transparent);
    animation: line-breathe 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

@keyframes line-breathe {

    0%,
    100% {
        opacity: 0.5;
        width: 60px;
    }

    50% {
        opacity: 1;
        width: 120px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    color: #F0C050;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    animation: breathe 2.5s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(240, 192, 80, 0.90),
                 0 2px 8px rgba(0,0,0,0.60);
    background: rgba(13, 32, 48, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 192, 80, 0.40);
    border-radius: 40px;
    padding: 10px 24px 6px;
    white-space: nowrap;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.4rem;
    animation: bounce 1.8s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
    color: #F0C050;
    text-shadow: 0 0 14px rgba(240, 192, 80, 1);
    margin-top: -4px;
    margin-bottom: 2px;
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.90;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}

/* =============================================
   FEATURED PRODUCTS SECTION
   ============================================= */
.featured-section {
    position: relative;
    z-index: 20;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(245, 240, 232, 0.15) 4%,
            rgba(245, 240, 232, 0.60) 10%,
            rgba(245, 240, 232, 0.92) 17%,
            #F5F0E8 24%,
            #FDF8F2 60%,
            #FDF8F2 100%);
    padding: 220px 5% 140px;
    overflow: hidden;
    margin-top: 0;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse,
            rgba(90, 172, 207, 0.10) 0%,
            rgba(139, 168, 107, 0.06) 35%,
            transparent 70%);
    pointer-events: none;
}

.featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.featured-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 18px;
    opacity: 0.9;
}

.featured-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: clamp(3px, 1.5vw, 7px);
    text-transform: uppercase;
    color: var(--deep-navy);
    margin: 0 0 16px;
}

.featured-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-soft);
    letter-spacing: 2px;
    margin: 0 0 70px;
}

/* Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: end;
}

/* Base card */
.feat-card {
    background: #ffffff;
    border: 1px solid rgba(90, 172, 207, 0.22);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    box-shadow:
        0 4px 6px rgba(13, 32, 48, 0.06),
        0 12px 40px rgba(13, 32, 48, 0.14);
}

.feat-card:hover {
    transform: translateY(-12px);
    border-color: rgba(200, 136, 42, 0.40);
    box-shadow:
        0 6px 8px rgba(13, 32, 48, 0.08),
        0 28px 60px rgba(13, 32, 48, 0.20),
        0 0 40px rgba(200, 136, 42, 0.10);
}

.feat-card--hero {
    border-color: rgba(200, 136, 42, 0.25);
    box-shadow:
        0 16px 50px rgba(13, 32, 48, 0.12),
        0 0 50px rgba(200, 136, 42, 0.08);
}

.feat-card--hero:hover {
    border-color: rgba(200, 136, 42, 0.55);
    box-shadow: 0 32px 80px rgba(13, 32, 48, 0.20), 0 0 70px rgba(200, 136, 42, 0.18);
}

.feat-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    overflow: hidden;
}

.feat-card--hero .feat-card-img-wrap {
    height: auto;
}

.feat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.feat-card:hover .feat-card-img {
    transform: scale(1.07);
}

.feat-card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top,
            rgba(18, 18, 20, 0.55) 0%,
            rgba(18, 18, 20, 0.10) 60%,
            transparent 100%);
    pointer-events: none;
}

.feat-card-body {
    padding: 24px 28px 30px;
    text-align: left;
    border-top: 1px solid rgba(90, 172, 207, 0.14);
    background: #ffffff;
}

.feat-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-mid);
    border: 1px solid rgba(62, 85, 101, 0.20);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.feat-tag--gold {
    color: var(--saffron);
    border-color: rgba(200, 136, 42, 0.40);
    background: rgba(200, 136, 42, 0.07);
}

.feat-card-name {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-navy);
    margin: 0 0 12px;
}

.feat-card-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0 0 24px;
    font-weight: 300;
}

/* View All CTA */
.featured-cta {
    margin-top: 60px;
}

.view-all-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--deep-navy);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 17px 52px;
    border-radius: 50px;
    border: 1.5px solid rgba(13, 32, 48, 0.50);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--deep-navy);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 50px;
    z-index: -1;
}

.view-all-btn:hover {
    color: #ffffff;
    border-color: var(--deep-navy);
    box-shadow:
        0 8px 30px rgba(13, 32, 48, 0.22),
        0 2px 8px rgba(200, 136, 42, 0.18);
    transform: translateY(-3px);
    letter-spacing: 6px;
}

.view-all-btn:hover::before {
    opacity: 1;
}

/* =============================================
   CHOICE / ACTION BUTTONS
   ============================================= */
.food-choice-box {
    margin-top: 40px;
    background: transparent;
    padding: 20px 30px;
    display: inline-block;
    border-top: 1px solid rgba(13, 32, 48, 0.15);
    border-bottom: 1px solid rgba(13, 32, 48, 0.15);
}

.food-choice-box p {
    margin: 0 0 20px 0;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(13, 32, 48, 0.55);
}

.choice-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.choice-btn {
    text-decoration: none;
    color: var(--deep-navy);
    background: rgba(255, 255, 255, 0.60);
    border: 1.5px solid rgba(13, 32, 48, 0.35);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    letter-spacing: 4px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.choice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 32, 48, 0.20), 0 2px 6px rgba(200, 136, 42, 0.15);
    background: var(--deep-navy);
    border-color: var(--deep-navy);
    color: #ffffff;
}

/* =============================================
   PAGE CONTENT (products / contact / sales)
   ============================================= */
.page-header {
    text-align: center;
    margin-bottom: 15px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--deep-navy);
    text-shadow: 0 4px 20px rgba(13, 32, 48, 0.12);
}

.page-header p {
    color: var(--text-soft);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* =============================================
   PRODUCT CARDS (products.html inline override)
   ============================================= */
.product-card {
    background: rgba(255, 255, 255, 0.70) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    border: 1px solid rgba(90, 172, 207, 0.18) !important;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 8px 30px rgba(13, 32, 48, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    color: var(--text-dark) !important;
}

.product-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(200, 136, 42, 0.40) !important;
    box-shadow: 0 20px 50px rgba(13, 32, 48, 0.14), inset 0 0 20px rgba(200, 136, 42, 0.05) !important;
}

.product-card-img {
    border: 2px solid rgba(90, 172, 207, 0.25) !important;
}

.product-card-tag {
    background: rgba(200, 136, 42, 0.10) !important;
    border: 1px solid rgba(200, 136, 42, 0.30) !important;
    color: var(--saffron) !important;
}

.product-card h3 {
    color: var(--deep-navy) !important;
}

.product-card p {
    color: var(--text-soft) !important;
}

/* Empty state */
.empty-products {
    color: var(--text-soft) !important;
}

.empty-products a {
    color: var(--saffron) !important;
}

/* Shimmer cards */
.shimmer-card {
    background: linear-gradient(90deg,
            rgba(90, 172, 207, 0.06) 25%,
            rgba(90, 172, 207, 0.12) 50%,
            rgba(90, 172, 207, 0.06) 75%) !important;
    border: 1px solid rgba(90, 172, 207, 0.12) !important;
}

/* =============================================
   CONTACT CARD (contact.html inline override)
   ============================================= */
.contact-card {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 30px !important;
    box-shadow: 0 12px 50px rgba(13, 32, 48, 0.10), inset 0 0 0 1px rgba(90, 172, 207, 0.18) !important;
    border: 1px solid rgba(90, 172, 207, 0.14) !important;
}

.contact-card h1 {
    color: var(--deep-navy) !important;
    text-shadow: 0 3px 12px rgba(13, 32, 48, 0.12) !important;
}

.contact-card p {
    color: var(--text-soft) !important;
}

.contact-card p:last-of-type {
    color: var(--saffron) !important;
}

.action-btn {
    color: var(--text-dark) !important;
    background: rgba(255, 255, 255, 0.45) !important;
    border: 1px solid rgba(90, 172, 207, 0.28) !important;
}

.action-btn:hover {
    box-shadow: 0 10px 30px rgba(13, 32, 48, 0.12) !important;
}

.btn-email:hover {
    background: var(--deep-navy) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(13, 32, 48, 0.25) !important;
    border-color: var(--deep-navy) !important;
}

.btn-call:hover {
    background: var(--deep-navy) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-card--hero {
        grid-column: 1 / -1;
        order: -1;
    }

    .feat-card--hero .feat-card-img-wrap {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .featured-section {
        padding: 180px 5% 100px;
    }
}

@media (max-width: 640px) {
    .glass-header {
        height: 60px;
        padding: 0 5%;
    }

    .logo {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 9vw, 3.5rem);
        letter-spacing: 3px;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .featured-section {
        padding: 80px 4% 60px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feat-card--hero {
        grid-column: auto;
        order: 0;
    }

    .feat-card-img-wrap,
    .feat-card--hero .feat-card-img-wrap {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .feat-card-body {
        padding: 18px 18px 22px;
    }

    .feat-card-name {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .view-all-btn {
        padding: 14px 32px;
        font-size: 0.72rem;
        letter-spacing: 3px;
    }

    .choice-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .choice-btn {
        padding: 12px 28px;
        font-size: 0.78rem;
        letter-spacing: 3px;
    }

    .featured-title {
        margin-bottom: 10px;
    }

    .featured-subtitle {
        margin-bottom: 35px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .logo {
        letter-spacing: 2px;
        font-size: 0.78rem;
    }

    .hero-text h1 {
        font-size: clamp(1.4rem, 10vw, 2.2rem);
        letter-spacing: 2px;
    }

    .feat-card-name {
        font-size: 0.9rem;
    }
}