/* 
    Ekat Spices - Premium Redesign
    Theme: Luxury + Organic Feel
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-green: #0F3D2E;
    --accent-gold: #C89B3C;
    --bg-cream: #F8F5F0;
    --pure-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --soft-shadow: 0 10px 30px rgba(0,0,0,0.06);
    --premium-shadow: 0 20px 60px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #0F3D2E !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 25px rgba(15, 61, 46, 0.2);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-gold) !important;
    color: var(--pure-white) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 155, 60, 0.3);
}

.btn-outline {
    background-color: transparent !important;
    color: var(--primary-green) !important;
    border: 2px solid var(--primary-green) !important;
}

.btn-outline:hover {
    background-color: var(--primary-green) !important;
    color: var(--pure-white) !important;
}

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

.btn-accent:hover {
    background-color: #0c3326;
    transform: translateY(-5px);
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

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

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

.btn-accent {
    background-color: var(--secondary-saffron);
    color: white;
}

.btn-accent:hover {
    background-color: #e68a2e;
    transform: translateY(-3px);
}

/* Header */
.header {
    background-color: var(--pure-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-green);
    font-size: 30px;
}

.logo span {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 35px;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background-color: var(--primary-green);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-green), rgba(15,61,46,0.7)),
                url('images/hero-spices.png') center/cover;
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btns .btn-primary {
    background-color: var(--accent-gold);
}

.hero-btns .btn-outline {
    color: white;
    border-color: white;
}

.hero-btns .btn-outline:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Section Headings */
.section-heading {
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-heading .ornament {
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 0 auto 20px;
    position: relative;
    border-radius: 2px;
}

.section-heading p {
    color: var(--text-muted);
}

/* Products Section */
.products {
    background-color: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--premium-shadow);
    border-color: var(--accent-gold);
}

.product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-img img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.manuf-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-cream);
    border-left: 5px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
}

.manuf-tag i {
    font-size: 28px;
    color: var(--accent-gold);
}

.manuf-tag p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Pickles Section */
.pickles {
    background: linear-gradient(135deg, #0F3D2E, #145C43);
    color: white;
    padding: 100px 0;
    margin: 60px 0;
}

.pickle-content h2 {
    color: var(--accent-gold);
    font-size: 3rem;
    margin-bottom: 25px;
}

.pickle-content p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

.pickle-features {
    list-style: none;
    margin-bottom: 40px;
}

.pickle-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.pickle-features i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.pickle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pickle-visual {
    position: relative;
}

.pickle-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background-color: var(--pure-white);
}

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

.why-card {
    background: var(--bg-cream);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.why-card:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow);
}

.why-icon {
    font-size: 45px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.why-card:hover p {
    color: rgba(255,255,255,0.8);
}

/* Founders Section */
.founders {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.founder-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 24px;
    width: 380px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
}

.founder-card:hover {
    transform: scale(1.03);
    box-shadow: var(--premium-shadow);
}

.founder-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.founder-info h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.founder-info p {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item i {
    color: var(--accent-gold);
    font-size: 22px;
    background: var(--pure-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--soft-shadow);
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.social-links {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-5px);
}

.contact-box {
    background: var(--pure-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--premium-shadow);
}

.contact-box h2 {
    margin-bottom: 35px;
    color: var(--primary-green);
    font-size: 2.2rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-family: inherit;
    margin-bottom: 20px;
    transition: var(--transition);
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.1);
}

.contact-box .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* WhatsApp Float */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid #EAEAEA;
    background: var(--pure-white);
}

/* Media Queries */
@media (max-width: 991px) {
    .header {
        padding: 15px 0;
    }

    .hero { 
        padding: 100px 0; 
        text-align: center;
    }
    
    .hero-content { 
        margin: 0 auto; 
    }

    .hero-btns { 
        justify-content: center; 
    }

    .about-grid, .pickle-container, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-image { order: -1; }
    .pickle-visual { order: -1; }
    .contact-info { order: 1; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        padding: 40px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        gap: 20px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin-left: 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .input-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 42px; }
    .section-heading h2 { font-size: 2.2rem; }
    .section-padding { padding: 70px 0; }
}
