/* JVHDJO INC - Neighborhood Grocery Store Style */
/* Fresh Organic Theme - Greens & Natural Tones with Bottom Navigation */

:root {
    --primary: #2D5A27;      /* Forest Green */
    --secondary: #8BC34A;     /* Light Green */
    --accent: #F57C00;       /* Orange */
    --bg-light: #F1F8E9;      /* Light Green Tint */
    --bg-cream: #FFFEF7;     /* Cream */
    --text-dark: #2E3B2E;
    --text-light: #FFFFFF;
    --shadow: rgba(45, 90, 39, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: 70px;
}

/* Top Header Bar */
.header-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3d1a 100%);
    padding: 15px 0;
    color: var(--text-light);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary);
    letter-spacing: 2px;
}

.header-bar .contact-info {
    font-size: 0.95rem;
}

.header-bar .contact-info span {
    margin-left: 20px;
}

/* Bottom Fixed Navigation Pill */
.nav-fresh {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1000;
    padding: 0;
}

.nav-fresh .nav-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.nav-fresh .nav-item {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
    border-top: 3px solid transparent;
}

.nav-fresh .nav-item:hover,
.nav-fresh .nav-item.active {
    color: var(--primary);
    border-top: 3px solid var(--secondary);
    background: var(--bg-light);
}

.nav-fresh .nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Hero Section */
.hero-organic {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 40px 20px;
    text-align: center;
}

.hero-organic .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.hero-organic h1 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-organic .tagline {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-organic .description {
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #7cb342;
}

/* Section Styles */
section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: var(--primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Products Grid - Organic Feel */
.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card .card-content {
    padding: 20px;
}

.product-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
}

.product-card .price {
    color: var(--accent);
    font-weight: bold;
    margin-top: 10px;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.team-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    margin-bottom: 15px;
}

.team-card h4 {
    color: var(--primary);
    font-size: 1rem;
}

.team-card p {
    color: #777;
    font-size: 0.85rem;
}

/* Cases Section */
.cases-section {
    background: var(--bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card .card-content {
    padding: 25px;
}

.case-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.case-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--primary);
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-btn {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-btn:hover {
    background: #7cb342;
    transform: translateY(-2px);
}

/* Footer - Simple Clean */
.footer-simple {
    background: #1a3318;
    color: var(--text-light);
    padding: 40px 20px 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-info h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: #aaa;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 1px solid #2a4525;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-bar .contact-info {
        display: none;
    }
    
    .hero-organic h1 {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}