:root {
    /* Vibrant Masala Palette */
    --color-chili-red: #d84315;
    /* Vibrant Red */
    --color-chili-dark: #bf360c;
    --color-turmeric-yellow: #ffb300;
    /* Rich Golden Yellow */
    --color-turmeric-light: #ffecb3;
    --color-cardamom-green: #2e7d32;
    /* Deep Fresh Green */
    --color-cumin-brown: #5d4037;
    /* Earthy Brown for text */
    --color-masala-dark: #3e2723;

    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #fdfbf7;
    /* Warm creamy background */
    --color-gray-light: #f5f5f5;
    --color-gray: #9e9e9e;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(93, 64, 55, 0.08);
    /* Warm shadow */
    --shadow-md: 0 10px 15px rgba(93, 64, 55, 0.1);
    --shadow-hover: 0 20px 25px rgba(93, 64, 55, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ================== Reset & Base ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-cumin-brown);
    background-color: var(--color-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--color-masala-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ================== Utility Classes ================== */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--color-white);
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.section-header {
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-cumin-brown);
    opacity: 0.8;
}

/* ================== Typography Enhancements ================== */
.hero-title em {
    color: var(--color-turmeric-yellow);
    font-style: italic;
    font-family: var(--font-heading);
}

/* ================== Buttons ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-chili-red);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(216, 67, 21, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-chili-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(216, 67, 21, 0.4);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-chili-red);
    border: 2px solid var(--color-chili-red);
}

.btn-outline:hover {
    background-color: rgba(216, 67, 21, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    /* Official WhatsApp Color */
    color: var(--color-white);
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

/* ================== Header & Nav ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(93, 64, 55, 0.05);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    color: var(--color-chili-red);
    margin: 0;
}

.logo .fa-leaf {
    background-color: var(--color-masala-dark);
    color: var(--color-chili-red);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo span {
    color: var(--color-masala-dark);
}

.brand-container {
    display: flex;
    flex-direction: column;
}

.tagline {
    font-size: 0.75rem;
    color: var(--color-cumin-brown);
    letter-spacing: 0.5px;
    margin-top: -0.2rem;
    margin-left: 2.8rem;
    /* Align with text */
    font-weight: 500;
}

.footer-tagline {
    color: #bcaaa4;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-turmeric-yellow);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-masala-dark);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-off-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-masala-dark);
}

/* ================== Hero Section ================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 5rem;
    /* Offset for navbar */
    background: url('hero-bg.jpg') center/cover no-repeat;
    background-color: var(--color-masala-dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 27, 24, 0.6);
    /* dark masala semi-transparent */
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--color-cardamom-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ================== Features Grid ================== */
.features {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 40%, #4e342e 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 67, 21, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.features .section-header h2 {
    color: var(--color-white);
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.feature-card:nth-child(1)::before {
    background: var(--color-chili-red);
}

.feature-card:nth-child(2)::before {
    background: var(--color-turmeric-yellow);
}

.feature-card:nth-child(3)::before {
    background: var(--color-cardamom-green);
}

.feature-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(216, 67, 21, 0.2);
    color: #ff7043;
    border: 2px solid rgba(216, 67, 21, 0.4);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(255, 179, 0, 0.2);
    color: var(--color-turmeric-yellow);
    border: 2px solid rgba(255, 179, 0, 0.4);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(46, 125, 50, 0.2);
    color: #66bb6a;
    border: 2px solid rgba(46, 125, 50, 0.4);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================== Products Grid ================== */
.products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 220px;
    background-color: var(--color-gray-light);
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Product Images */
#img-chili {
    background-image: url('images/red-chilli.png');
}

#img-jeera {
    background-image: url('images/jeera.png');
}

#img-coriander {
    background-image: url('images/coriander.png');
}

#img-turmeric {
    background-image: url('images/turmeric.png');
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-chili-red);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-light);
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-size {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.size-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gray);
    background: var(--color-gray-light);
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    min-width: 2.5rem;
    text-align: center;
}

.price-offer {
    font-weight: 700;
    color: var(--color-cardamom-green);
    font-size: 1.05rem;
}

.price-mrp {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-decoration: line-through;
}


/* ================== Contact CTA Section ================== */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.contact-content h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.contact-method-card:hover {
    transform: translateX(10px);
}

.contact-method-card h4 {
    margin-bottom: 0.2rem;
}

.contact-method-card p {
    font-size: 0.9rem;
    margin: 0;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
}

.whatsapp-icon {
    background-color: #25D366;
}

.phone-icon {
    background-color: var(--color-chili-red);
}

.contact-image-placeholder {
    background: url('hero-bg.jpg') center/cover no-repeat;
    background-color: var(--color-masala-dark);
    border-radius: 20px;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: left;
    padding: 2rem;
}

.contact-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 15, 10, 0.85) 30%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 20px;
}

.contact-image-placeholder h3 {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.decorative-circle {
    display: none;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* ================== Footer ================== */
.footer {
    background-color: var(--color-masala-dark);
    color: var(--color-white);
    padding-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    color: var(--color-white);
}

.footer-logo span {
    color: var(--color-turmeric-yellow);
}

.footer-brand p {
    color: #bcaaa4;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links a,
.footer-links p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bcaaa4;
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-turmeric-yellow);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #2b1b18;
    padding: 1.5rem 0;
    color: #8d6e63;
    font-size: 0.9rem;
}

/* ================== Animations ================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* ================== Responsive ================== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}