<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: Coxsackie Food Pantry
Description: Custom WordPress theme for Coxsackie Area Food Pantry - A responsive, modern theme for food banks and non-profit organizations
Version: 1.3.0
Author: Custom Development
Text Domain: coxsackie-food-pantry
Updated: December 2024
File Version: STYLE-v1.3.0-20241231-SOCIAL
*/

/* 
FILE IDENTIFIER: STYLE-v1.3.0-20241231-SOCIAL
FEATURES: Social Media Integration, Real Contact Data, Facebook/Instagram Links
If you can see this comment, the CSS file is loading correctly!
Search for "FILE IDENTIFIER" to confirm this is the latest version.
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #2c5530;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    background-color: #2c5530; /* Fallback solid color */
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Ensure hero content is visible */
.hero-content {
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5530;
}

/* Statistics Section */
.stats-section {
    background: #f8f9fa;
    background-color: #f8f9fa; /* Ensure background shows */
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Help/Volunteer Section */
.help-section {
    background: #ffffff;
    background-color: #ffffff; /* Ensure white background */
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5530;
}

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

.help-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.help-item:hover {
    transform: translateY(-5px);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: #2c5530;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.help-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.help-item p {
    color: #666;
    line-height: 1.6;
}

/* Mission Section */
.mission-section, .about-section {
    background: #fff;
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c5530;
}

.mission-features {
    list-style: none;
    margin-top: 30px;
}

.mission-features li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.mission-features li:before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

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

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

/* Donation Section Background */
.donation-section {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    padding: 80px 0;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    background-color: #ffffff;
    padding: 80px 0;
}

/* Blog Section */
.blog-section {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    padding: 80px 0;
}

/* Section Spacing for One-Page Layout */
section {
    scroll-margin-top: 80px; /* Account for fixed header */
    position: relative;
    width: 100%;
}

/* Navigation Active States for One-Page */
.main-navigation a {
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: #2c5530;
    transform: translateY(-2px);
}

/* Smooth Scroll Offset */
#home, #about, #volunteer, #donate, #contact, #news {
    scroll-margin-top: 100px;
}

/* Ensure all section backgrounds show */
#home { background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%) !important; }
#about { background: #ffffff !important; }
#volunteer { background: #ffffff !important; }
#donate { background: #f8f9fa !important; }
#contact { background: #ffffff !important; }
#news { background: #f8f9fa !important; }

/* Fix any potential CSS conflicts */
.hero-section, .about-section, .help-section, .donation-section, .contact-section, .blog-section {
    width: 100%;
    clear: both;
    overflow: hidden;
}

/* Enhanced Form Styling for One-Page Layout */
.contact-form, .volunteer-form {
    background: white;
    background-color: white; /* Ensure background shows */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c5530;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

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

/* Donation Amount Buttons Enhancement */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
    max-width: 400px;
}

.amount-btn {
    padding: 20px;
    border: 2px solid #2c5530;
    background: white;
    color: #2c5530;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.selected {
    background: #2c5530;
    color: white;
}

/* Blog/News styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: #2c5530;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #4a7c59;
}

.blog-card .date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a7c59;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Page-specific styles */
.page-content {
    padding: 120px 0 80px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c5530;
    text-align: center;
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-area h2 {
    color: #2c5530;
    margin: 30px 0 15px;
}

.content-area p {
    margin-bottom: 20px;
}

/* Back to Top Button (Optional Enhancement) */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2c5530;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #4a7c59;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stack contact and donation sections on mobile */
    #donate &gt; .container &gt; div,
    #contact &gt; .container &gt; div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}</pre></body></html>