/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #4A5D3A;
    --secondary-color: #8B7355;
    --accent-color: #A0826D;
    --text-dark: #3D2F1F;
    --text-light: #5A4A3A;
    --bg-cream: #E8DCC8;
    --bg-light: #F0E6D2;
    --bg-warm: #EAE0CC;
    --white: #FFFFFF;
    --gold: #D4A574;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-warm);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3A4D2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 93, 58, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===================================
   Top Banner
   =================================== */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5A6E4A 100%);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.banner-text {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.banner-text strong {
    font-weight: 600;
    color: var(--gold);
}

/* ===================================
   Header
   =================================== */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(234, 224, 204, 0.98);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
}

.logo-tagline {
    font-size: 8px;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background-color: var(--bg-warm);
    background-image: url('assets/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(212,165,116,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-hindi);
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title-accent {
    color: #B8956A;
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 18px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-feature p {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    margin: 0;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===================================
   Process Section
   =================================== */
.process {
    background-color: var(--bg-cream);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
    padding: var(--section-padding);
    position: relative;
}

.section-title-hindi {
    font-family: var(--font-hindi);
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle-hindi {
    font-family: var(--font-hindi);
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.process-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    object-fit: cover;
}

.process-step h3 {
    font-family: var(--font-hindi);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-family: var(--font-hindi);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-arrow {
    font-size: 30px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ===================================
   Organic Range Section
   =================================== */
.organic-range {
    padding: var(--section-padding);
    background-color: var(--bg-warm);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '❋';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 24px;
}

.section-title::before {
    left: calc(50% - 200px);
}

.section-title::after {
    right: calc(50% - 200px);
}

.spices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.spice-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.spice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.spice-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spice-name {
    font-family: var(--font-hindi);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.spice-name-en {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.spice-desc {
    font-family: var(--font-hindi);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.view-all-btn-container {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Heritage Video Section
   =================================== */
.heritage {
    background-color: var(--bg-warm);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
    padding: var(--section-padding);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.heritage-title-hindi {
    font-family: var(--font-hindi);
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.heritage-subtitle-hindi {
    font-family: var(--font-hindi);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.heritage-description {
    font-family: var(--font-hindi);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.heritage-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.heritage-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.heritage-value-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.heritage-value p {
    font-family: var(--font-hindi);
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.heritage-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heritage-video-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.heritage-video-player {
    width: 100%;
    height: auto;
    max-height: 500px;
    aspect-ratio: 9/16;
    border-radius: 12px;
    object-fit: cover;
    background-color: #000;
    display: block;
}

.video-caption {
    margin-top: 15px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-family: var(--font-hindi);
    font-size: 14px;
    display: block;
}

/* ===================================
   Recipes Section
   =================================== */
.recipes {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
}

.section-title-decorative {
    font-family: var(--font-hindi);
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.section-title-decorative::before,
.section-title-decorative::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
}

.section-title-decorative::before {
    left: calc(50% - 300px);
}

.section-title-decorative::after {
    right: calc(50% - 300px);
}

.recipes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.recipes-grid {
    display: contents;
}

.recipe-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.recipes-highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.recipes-highlight-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.recipes-highlight-desc {
    font-family: var(--font-hindi);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.recipes-highlight-image {
    border-radius: 12px;
    overflow: hidden;
}

.recipes-highlight-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

/* ===================================
   Trust Badges Section
   =================================== */
.trust-badges {
    padding: 60px 0;
    background-color: var(--bg-warm);
    background-image: url('assets/bg-texture.jpg');
    background-repeat: repeat;
    background-size: 400px 400px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.badge {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge h4 {
    font-family: var(--font-hindi);
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.badge p {
    font-family: var(--font-hindi);
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--white);
    margin: 0;
}

.footer-logo p {
    font-size: 12px;
    color: var(--accent-color);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.social-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

.newsletter h4 {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-content,
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image,
    .heritage-media {
        order: -1;
    }
    
    .heritage-video-player {
        max-height: 600px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-arrow {
        display: none;
    }
    
    .recipes-highlight {
        grid-template-columns: 1fr;
    }
    
    .section-title::before,
    .section-title::after,
    .section-title-decorative::before,
    .section-title-decorative::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .top-banner {
        padding: 10px 0;
    }
    
    .banner-text {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .banner-icon {
        font-size: 16px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .header .btn-primary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-feature {
        padding: 12px 16px;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-feature p {
        font-size: 11px;
    }
    
    .section-title,
    .section-title-hindi,
    .heritage-title-hindi {
        font-size: 32px;
    }
    
    .section-title-decorative {
        font-size: 28px;
    }
    
    .spices-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .heritage-values {
        grid-template-columns: 1fr;
    }
    
    .heritage-video-player {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        max-height: 70vh;
    }
    
    .video-caption {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .recipes-highlight-title {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .section-title,
    .section-title-hindi,
    .heritage-title-hindi {
        font-size: 26px;
    }
    
    .spices-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > *,
.spice-card,
.recipe-card,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Accessibility
   =================================== */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
