/* California Gourmet Website Styles */

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c29;
    --accent-gold: #f4c430;
    --light-gold: #fff8dc;
    --dark-brown: #3e2723;
    --cream: #faf8f3;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-green);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    padding-left: 50px;
}

.hero h1 {
    font-size: 3em;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-green);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--secondary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--dark-brown);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Certification Badge */
.certification-badge {
    background-color: var(--primary-green);
    padding: 30px 0;
    color: white;
}

.cert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cert-content img {
    height: 80px;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.cert-text h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.cert-text p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 30px;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.product-sizes {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.product-sizes li {
    background-color: var(--light-gold);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    color: var(--dark-brown);
    font-weight: 500;
}

/* Process Preview */
.process-preview {
    padding: 80px 0;
    background-color: white;
}

.process-preview h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 50px;
}

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

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

.process-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-item h4 {
    font-size: 1.4em;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.process-item p {
    color: var(--text-light);
    font-size: 1.05em;
}

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

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 50px;
}

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

.benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit .icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 1.3em;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.benefit p {
    color: var(--text-light);
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3em;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2.2em;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-column img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box {
    background-color: var(--light-gold);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-green);
    margin: 30px 0;
}

.info-box h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer - ULTRA AGGRESSIVE WHITE TEXT ENFORCEMENT */
footer {
    background-color: var(--dark-brown);
    color: #ffffff !important;
    padding: 50px 0 20px;
}

/* Force white color on EVERY possible element in footer */
footer,
footer *,
footer p,
footer span,
footer strong,
footer b,
footer em,
footer i,
footer div,
footer section,
footer article {
    color: #ffffff !important;
}

/* Specifically target footer sections */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    color: #ffffff !important;
}

.footer-section {
    color: #ffffff !important;
}

.footer-section * {
    color: #ffffff !important;
}

.footer-section h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--accent-gold) !important;
}

.footer-section p,
.footer-section p *,
.footer-section strong {
    color: #ffffff !important;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    color: #ffffff !important;
}

.footer-section a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-gold) !important;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-cert {
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ffffff !important;
}

.footer-bottom * {
    color: #ffffff !important;
}

.footer-bottom p {
    color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-left: 20px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .cert-content {
        flex-direction: column;
        text-align: center;
    }
}
