/* =======================
   FONTS
======================= */
@font-face {
    font-family: 'money-honey';
    src: url('../fonts/money-honey.ttf') format('truetype');
}
@font-face {
    font-family: 'bouncy';
    src: url('../fonts/bouncy.otf') format('opentype');
}
@font-face {
    font-family: 'neosans';
    src: url('../fonts/neosanspro-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'banano';
    src: url('../fonts/banano.otf') format('opentype');
}
/* =======================
   RESET
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none !important;
}
body {
    font-family: 'neosans', sans-serif;
}
/* =======================
   COMMON
======================= */
.container-padding {
    padding: 0 300px;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* =======================
   NAVBAR
======================= */
.navbar-theme {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.navbar-theme.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(187, 187, 187, 0.41);
    backdrop-filter: blur(8px);
    padding: 10px 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.logo img {
    height: 80px;
}
.nav-links {
    display: flex;
    gap: 50px;
}
.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease;
}
.nav-links a:hover {
    color: #8cc63f;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
/* =======================
   HERO
======================= */
.hero {
    height: 100vh;
    background: url('../images/home/hero_banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: #fff;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(120, 70, 20, 0.6));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 300px;
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'neosans';
}
.hero-subtitle span {
    font-weight: 800;
}
.hero-title {
    font-size: 65px;
    font-family: 'money-honey';
}
/* =======================
   FLAVOURS
======================= */
.flavours {
    /* background: #e9dcc6; */
    background-image: url('../images/home/our_product_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
}
.flavours-container {
    max-width: 1300px;
    margin: auto;
}
.flavours-title {
    display: inline-block;
    font-family: 'banano';
    font-size: 30px;
    padding: 10px 25px;
    margin-bottom: 70px;
    letter-spacing: 1px;
    background-color: #5bb148;
    border-radius: 50px;
    color: #fff;
}
.flavour-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.flavour-card {
    width: 287px;
    height: 360px;
    border-radius: 30px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s;
    background: center/cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.flavour-card img {
    position: absolute;
    top: -12px;
    width: 246px;
    transform: rotate(-15deg);
}
.flavour-card h3 {
    font-family: 'banano';
    font-size: 26px;
    margin-bottom: 5px;
    color: #fcfcfc;
    letter-spacing: 1px;
    text-shadow:
        4px 4px 0px rgba(0, 0, 0, 0.25);
}
.flavour-card button {
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #fff;
    cursor: pointer;
    font-family: 'neosans';
}
.flavour-card:hover {
    transform: translateY(-10px);
}
/* Background Variants */
.guava {
    background-image: url('../images/home/home-guva-bg.png');
}
.pineapple {
    background-image: url('../images/home/home-pineapple-bg.png');
}
.kokum {
    background-image: url('../images/home/home-kokum-bg.png');
}
.nimbu {
    background-image: url('../images/home/home-nimbu-bg.png');
}
/* =======================
   FOOTER
======================= */
.footer {
    background: url('../images/home/our_product_bg.png');
    padding: 40px 20px;
    text-align: left;
}
.footer-container {
    max-width: 1000px;
    margin: auto;
}
.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}
.footer-links {
    font-size: 14px;
    margin-bottom: 20px;
}
.footer-links a {
    text-decoration: none;
    color: #333;
    margin: 0 5px;
}
.footer-links span {
    margin: 0 5px;
    color: #aaa;
}

.footer-social{
    color: #000;     
}

.footer-social a i {
    transform: scale(1.2);
    color: #000;
    padding: 3px 5px;
}

.footer-social a{
    color: #000;    
}

.footer-bottom {
    font-size: 12px;
    color: #888;
}
.footer-bottom a {
    color: #888;
    text-decoration: none;
}
.flavour-card>.product_one {
    transform: scale();
}
.product_curve_text {
    height: 50px;
}
.button-zing1 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}
/* SVG BORDER */
.button-zing1 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}
/* SVG BORDER */
.button-zing1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/guava_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}
.button-zing2 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}
/* SVG BORDER */
.button-zing2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/pineapple_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}
.button-zing3 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}
/* SVG BORDER */
.button-zing3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/kokum_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}
.button-zing4 {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-family: 'bouncy';
    border: none;
    z-index: 1;
}
/* SVG BORDER */
.button-zing4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/home/nimbu_btn.png') no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}
.main_margin {
    margin-top: 110px;
}
.product_hero_section {
    padding: 100px 0;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.product_hero_section .product_thumbnail {
    height: 480px;
}
.product_hero_section .product_content h1 {
    font-family: 'banano';
    font-size: 70px;
    line-height: 0.8;
    color: #fff;
}
.product_hero_section .product_content h3 {
    font-family: 'bouncy';
    color: #fff;
}
.product_hero_section .product_content h4 {
    font-family: 'neosans';
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.one {
    background-image: url('../images/home/one.png');
}
.two {
    background-image: url('../images/home/two.png');
}
.three {
    background-image: url('../images/home/three.png');
}
.four {
    background-image: url('../images/home/four.png');
}
.product_title_bg {
    background-image: url('../images/home/Guava_Title_BG.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    height: 118px;
}
.product_hero_section .one {
    position: relative;
}
.product_hero_section_banner_element {
    position: absolute;
    top: 149px;
    right: 108px;
    height: 220px;
}
.product-page-hidden-title {
    position: absolute;
    left: -9999px;
}
.product-title-img {
    width: 300px;
}
.footer-social {
    margin-bottom: 15px;
}
.body-text{
    font-family: 'neosans';
}
/* DESKTOP ONLY */
@media (min-width: 768px) {
    .flavour-card {
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        transition: transform 0.3s ease;
    }
    /* PRODUCT IMAGE */
    .flavour-card img {
        position: relative;
        z-index: 2;
        transition: transform 0.4s ease, filter 0.4s ease;
    }
    /* POPUP EFFECT (ONLY PRODUCT, NOT BACKGROUND) */
    .flavour-card:hover img {
        transform: translateY(-25px) scale(1.1);
        filter: drop-shadow(0 25px 30px rgba(67, 67, 67, 0.3));
    }
    .flavour-card:hover {
        transform: scale(1.03);
    }
    #closeMenu {
        display: none;
    }
}
/* =======================
   MOBILE (MERGED)
======================= */
@media (max-width: 912px) {
    .hero {
        background: url('../images/home/hero_banner_mobile.png') center/cover no-repeat;
    }
    .navbar-theme,
    .hero-content {
        padding: 15px;
    }
    .hero-content {
        position: absolute;
        bottom: 5px;
        left: 18px;
        text-align: center;
    }
    .logo img {
        height: 120px;
    }
    .navbar-theme .logo {
        margin-left: 127px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.9);
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .flavour-card {
        width: 90%;
        max-width: 300px;
        padding: 8px;
    }
    .flavours-title {
        font-size: 20px;
        color: #fff;
        padding: 11px 35px;
    }
    .footer {
        margin-top: -36px;
        padding-top: 80px;
    }
    .footer-links {
        line-height: 1.8;
    }
    .footer-bottom {
        font-size: 11px;
    }
    .flavour-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .product_bg1 {
        background-image: url('../images/home/product_bg1.png');
        background-size: cover;
        position: relative;
        margin-top: -66px;
        background-repeat: no-repeat;
    }
    .product_contain_bg1 {
        background-image: url('../images/home/product_contain_bg1.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -59px;
    }
    .product_bg2 {
        background-image: url('../images/home/product_bg2.png');
        background-size: cover;
        position: relative;
        margin-top: -66px;
        background-repeat: no-repeat;
        height: 423px;
    }
    .product_contain_bg2 {
        background-image: url('../images/home/product_contain_bg2.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -47px;
    }
    .product_bg3 {
        background-image: url('../images/home/product_bg3.png');
        background-size: cover;
        position: relative;
        margin-top: -100px;
        background-repeat: no-repeat;
        height: 423px;
    }
    .product_contain_bg3 {
        background-image: url('../images/home/product_contain_bg3.png');
        height: 238px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -47px;
    }
    .product_bg4 {
        background-image: url('../images/home/product_bg4.png');
        background-size: cover;
        position: relative;
        margin-top: -73px;
        background-repeat: no-repeat;
        height: 457px;
    }
    .product_contain_bg4 {
        background-image: url('../images/home/product_contain_bg4.png');
        height: 221px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin-top: -61px;
    }
    .footer-container {
        text-align: left;
    }
    /* Navigation */
    .navbar-theme {
        position: absolute;
        top: 0;
        width: 100%;
        padding: 15px;
        z-index: 999;
        transition: all 0.3s ease;
    }
    /* When scrolled */
    .navbar-theme.fixed {
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(187, 187, 187, 0.41);
        backdrop-filter: blur(6px);
        padding: 10px 15px;
    }
    .navbar-theme.fixed .logo img {
        height: 55px;
        /* smaller logo */
    }
    .navbar-theme.fixed .logo {
        margin-left: 0;
    }
    .product_content {
        text-align: center;
        margin-top: 40px;
    }
    .flavour-card img {
        left: 10px;
        top: 16px;
    }
    .product_hero_section .product_thumbnail {
        width: 100%;
        height: auto !important;
    }
    .product_hero_section_banner_element {
        position: absolute;
        top: 159px;
        right: 10px;
        height: 131px;
    }
    .product_curve_text {
        width: 100%;
    }
    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        z-index: 1001;
    }
    /* Fullscreen menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #5bb148;
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        transition: 0.4s ease;
        z-index: 1000;
        gap: 0;
        padding-top: 100px;
        text-transform: uppercase;
    }
    .nav-links a {
        color: #fff !important;
        font-size: 17px;
        margin: 15px 0;
        text-decoration: none;
        font-family: 'neosans';
    }
    /* Active state */
    .nav-links.active {
        right: 0;
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }
    body.menu-open .menu-toggle {
        display: none;
    }
}