/* CSS Variables with Vegetable-Inspired Colors */
:root {
    /* Primary Colors - Inspired by fresh vegetables */
    --leafy-green: #4A7C59;      /* Deep leafy greens like spinach */
    --tomato-red: #D64545;       /* Ripe tomato red */
    --carrot-orange: #FF8C42;    /* Fresh carrot orange */
    --cucumber-green: #8FBC8F;   /* Cool cucumber green */
    --lettuce-green: #A8D5A8;    /* Fresh lettuce light green */
    --eggplant-purple: #614051;  /* Deep eggplant purple */
    
    /* Secondary Colors */
    --bell-pepper-yellow: #FFD166;  /* Yellow bell pepper */
    --radish-pink: #FFB5B5;         /* Fresh radish pink */
    --celery-green: #B4D4B4;        /* Light celery green */
    --onion-white: #FFF8F3;         /* Creamy onion white */
    
    /* Neutral Colors */
    --soil-brown: #6B4423;          /* Rich soil brown */
    --dark-text: #2C3E2C;           /* Dark green text */
    --light-text: #5A6B5A;          /* Medium green text */
    --white: #FFFFFF;
    --light-bg: #FAFFF5;            /* Very light green-tinted white */
    
    /* Shadows and Effects */
    --shadow-sm: 0 2px 4px rgba(74, 124, 89, 0.1);
    --shadow-md: 0 4px 8px rgba(74, 124, 89, 0.15);
    --shadow-lg: 0 8px 16px rgba(74, 124, 89, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

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

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, var(--leafy-green) 0%, var(--cucumber-green) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lettuce-green) 0%, var(--celery-green) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    color: var(--leafy-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--carrot-orange) 0%, var(--bell-pepper-yellow) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--leafy-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--carrot-orange) 0%, var(--bell-pepper-yellow) 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--leafy-green);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--onion-white);
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
}

.feature-item img {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-weight: 600;
    color: var(--leafy-green);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cucumber-green);
}

.product-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--leafy-green);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--onion-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--celery-green) 0%, var(--lettuce-green) 100%);
}

.service-item:hover h3,
.service-item:hover p {
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-item h3 {
    font-size: 1.2rem;
    color: var(--leafy-green);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-item p {
    color: var(--light-text);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--leafy-green);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--cucumber-green);
}

.contact-item img {
    width: 40px;
    height: 40px;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--leafy-green);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.store-hours {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--onion-white);
    border-radius: 12px;
}

.store-hours h3 {
    font-size: 1.4rem;
    color: var(--leafy-green);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    color: var(--light-text);
}

.hours-grid span:nth-child(odd) {
    font-weight: 500;
    color: var(--dark-text);
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--leafy-green) 0%, var(--cucumber-green) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--bell-pepper-yellow);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        flex-wrap: wrap;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex: 1 1 100%;
        justify-content: center;
    }
}
