/*
Theme Name: United Democrats of Ojai
Theme URI: https://udove.wpthemeguide.com
Description: A community-focused theme for the United Democrats of Ojai Valley with warm, welcoming design and Ojai-inspired colors
Version: 1.0
Author: United Democrats of Ojai Valley
Author URI: https://udove.wpthemeguide.com
Tags: politics, community, democratic, local-organization
Text Domain: udov-theme
*/

/* ========================================
   Fonts
   ======================================== */
@import url('https://use.typekit.net/afr3hmf.css');

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ========================================
   Color Palette - Natural Ojai Colors
   ======================================== */
:root {
    --primary: #58A88C;            /* Hero image green - Primary */
    --primary-dark: #448870;       /* Darker shade for hover states */
    --primary-light: #6BC4A6;      /* Lighter shade for backgrounds */
    --secondary: #58A88C;          /* Hero image green - Secondary */
    --neutral: #FFFEF9;            /* Natural white - Backgrounds */
    --text: #2A2A2A;               /* Near black - Text */
    --accent: #58A88C;             /* Hero green - Accents */
    --white: #FFFFFF;

    /* Brand colors */
    --democratic-blue: #3D5A80;    /* Democratic blue */
    --ojai-gold: #C9A961;          /* Ojai gold */

    /* Legacy support */
    --ojai-sage: #58A88C;
    --dark-text: #2A2A2A;
    --cream: #FFFEF9;
}

/* ========================================
   Typography
   ======================================== */
body {
    font-family: 'brandon-grotesque', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--neutral);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'brandon-grotesque', 'Arial', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* ========================================
   Layout Structure
   ======================================== */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow-x: hidden;
}

.site-inner {
    padding: 2rem;
    max-width: 100%;
}

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

.hero-section,
.content-section,
.quick-action-section,
.site-footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 254, 249, 0.98);
    border-bottom: 1px solid rgba(61, 79, 61, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 56px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo-link:hover .header-logo-img {
    opacity: 0.8;
}

.header-text-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--democratic-blue);
    transition: color 0.3s ease;
}

.header-text-logo:hover {
    color: var(--ojai-gold);
}

/* ========================================
   Navigation Styles
   ======================================== */
.main-navigation {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
        align-items: center;
    }
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin: 0;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: var(--secondary);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

/* Header CTA Button */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 40px;
    padding: 0 1rem;
    background-color: var(--secondary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-dropdown {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: var(--neutral);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item a,
.mobile-nav-menu .current_page_item a {
    background-color: var(--secondary);
    color: white;
}

.mobile-menu-donate {
    padding: 1.5rem 2rem;
    text-align: center;
}

.mobile-menu-donate .btn {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-dropdown {
        display: block;
    }
}

/* ========================================
   Home Page Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 280px;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--democratic-blue);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 79, 61, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0 auto 2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

/* ========================================
   Buttons & CTAs
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(94, 125, 40, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2f3d2f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(61, 79, 61, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section.alt-bg {
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 1rem auto 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Cards & Grid Layout
   ======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(94, 125, 40, 0.15);
}

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

.card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
    align-self: center;
}

/* ========================================
   Mission Statement Section
   ======================================== */
.mission-section {
    background: #ffffff;
}

.mission-content {
    max-width: 850px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
}

/* ========================================
   Quick Action Section
   ======================================== */
.quick-action-section {
    background-color: var(--primary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.quick-action-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-action-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-action-section .btn-primary {
    background-color: var(--secondary);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.quick-action-section .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background-color: #000000;
    color: var(--neutral);
    padding: 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    margin: 1.5rem 0;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--cream);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a svg {
    width: 28px;
    height: 28px;
}

.social-links a:hover {
    color: var(--secondary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-info a {
    color: var(--neutral);
}

.footer-info a:hover {
    color: var(--secondary);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    body {
        position: relative;
        max-width: 100vw;
    }

    .site-container {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .header-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .header-logo-img {
        height: 56px;
    }

    .header-text-logo {
        font-size: 0.95rem;
    }

    .hide-mobile {
        display: none !important;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 180px;
        max-height: 180px;
        width: 100%;
    }

    .hero-background img {
        object-fit: contain;
        object-position: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 1rem;
        width: 100%;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-donate {
        max-width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

/* ========================================
   WordPress Core Styles
   ======================================== */
.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* ========================================
   Page Header Section
   ======================================== */
.page-header-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
    color: var(--white);
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ========================================
   Page Content
   ======================================== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content .entry-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content .featured-image {
    margin-bottom: 2rem;
    text-align: center;
}

.page-content .featured-image img {
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* ========================================
   Blog Layout
   ======================================== */
.blog-section {
    max-width: 900px;
    margin: 0 auto;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    background: var(--white);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(94, 125, 40, 0.15);
}

.blog-post .post-thumbnail {
    width: 100%;
    overflow: hidden;
}

.blog-post .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-post .post-content {
    padding: 2rem;
}

.blog-post .entry-title {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.blog-post .entry-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post .entry-title a:hover {
    color: var(--secondary);
}

.blog-post .entry-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post .entry-excerpt {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.blog-post .entry-footer {
    margin-top: 1rem;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
}

.no-results .entry-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-results .entry-content p {
    color: #666;
    font-size: 1.1rem;
}

/* ========================================
   Responsive - Pages and Blog
   ======================================== */
@media (max-width: 768px) {
    .page-header-section {
        padding: 3rem 1rem 2rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .blog-post .post-content {
        padding: 1.5rem;
    }

    .blog-post .entry-title {
        font-size: 1.5rem;
    }

    .blog-post .entry-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ========================================
   Custom Page Templates - About, Get Involved, Events, Contact
   ======================================== */

/* About Page, Get Involved, Events Sections */
.about-section,
.involvement-section,
.events-section,
.contact-section {
    padding: 3rem 0;
}

.about-section.alt-bg,
.involvement-section.alt-bg,
.events-section.alt-bg,
.contact-section.alt-bg {
    background-color: #fafafa;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content,
.involvement-content,
.events-content,
.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3,
.involvement-content h3,
.events-content h3,
.contact-content h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content ul,
.involvement-content ul,
.events-content ul,
.contact-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-content li,
.involvement-content li,
.events-content li,
.contact-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(94, 125, 40, 0.15);
}

.value-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Volunteer Grid (Get Involved Page) */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.volunteer-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.volunteer-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 125, 40, 0.15);
}

.volunteer-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.volunteer-card p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Membership Benefits */
.membership-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--secondary);
    margin: 2rem 0;
}

.membership-benefits h3 {
    margin-top: 0;
}

/* Donation Options */
.donation-breakdown,
.giving-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.donation-item,
.giving-method {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.donation-item h4,
.giving-method h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-option {
    text-align: center;
    padding: 1.5rem;
}

.support-option h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Event Flyers */
.event-flyers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-flyers img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Events Calendar */
.events-calendar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.event-card {
    display: flex;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(94, 125, 40, 0.15);
}

.event-date {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    padding: 1.5rem;
    flex: 1;
}

.event-details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.event-time,
.event-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.event-description {
    color: #555;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.events-note {
    text-align: center;
    color: #666;
    margin-top: 2rem;
}

/* Event Types Grid */
.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-type {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.event-type h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Stay Informed Options */
.stay-informed-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.informed-option {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.informed-option h3 {
    color: var(--primary);
    margin-top: 0;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.required {
    color: #d32f2f;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Meeting Details */
.meeting-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.meeting-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.meeting-detail-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.location-map {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.location-map h3 {
    margin-top: 0;
}

/* Leadership Contacts */
.leadership-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.leadership-contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.leadership-contact-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.leadership-contact-card a {
    color: var(--secondary);
    font-weight: 600;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.social-media-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-media-button:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 125, 40, 0.15);
}

.social-media-button.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.social-media-button.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.social-media-button.email:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.social-media-button span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mailing Address */
.mailing-address {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Sections */
.about-cta,
.membership-cta,
.volunteer-cta,
.donation-cta,
.events-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid var(--secondary);
}

.about-cta h2,
.membership-cta h3,
.volunteer-cta h3,
.donation-cta h3,
.events-cta h3 {
    color: var(--primary);
    margin-top: 0;
}

/* Responsive - Custom Pages */
@media (max-width: 768px) {
    .about-section.alt-bg,
    .involvement-section.alt-bg,
    .events-section.alt-bg,
    .contact-section.alt-bg {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .values-grid,
    .volunteer-grid,
    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: auto;
        padding: 1rem;
    }

    .social-media-links {
        flex-direction: column;
        align-items: center;
    }

    .social-media-button {
        width: 100%;
        max-width: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Donate Page Styles
   ======================================== */

.donate-section {
    padding: 3rem 0;
}

.donate-section.alt-bg {
    background-color: #fafafa;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.donate-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Donation Impact Grid */
.donation-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(94, 125, 40, 0.15);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Giving Options */
.giving-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.giving-option-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.giving-option-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(94, 125, 40, 0.05) 0%, rgba(61, 79, 61, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.giving-option-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.giving-option-card > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.amount-suggestions,
.sustainer-benefits ul,
.inkind-examples ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.amount-suggestions li,
.sustainer-benefits li,
.inkind-examples li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.sustainer-benefits,
.inkind-examples {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.sustainer-benefits h4,
.inkind-examples h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.donate-button-container {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Donation Form Container */
.donation-form-container {
    max-width: 800px;
    margin: 2rem auto;
}

.donation-form-notice {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--secondary);
    margin-bottom: 2rem;
}

.donation-form-notice h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

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

.payment-method {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.payment-method h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.payment-method p {
    margin-bottom: 1.5rem;
}

.mailing-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
    border-left: 4px solid var(--secondary);
}

.donation-disclaimer {
    background: #fff9e6;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.donation-disclaimer p {
    margin-bottom: 0.5rem;
}

.donation-disclaimer strong {
    color: var(--primary);
}

.donation-disclaimer ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.donation-disclaimer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.support-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.support-card .btn {
    margin-top: auto;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-left: -2rem;
    margin-right: -2rem;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thank-you-content .btn {
    margin-top: 1rem;
}

/* Responsive - Donate Page */
@media (max-width: 768px) {
    .donate-section.alt-bg,
    .thank-you-section {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .donation-impact-grid,
    .giving-options-grid,
    .payment-methods,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .giving-option-card {
        padding: 2rem 1.5rem;
    }

    .featured-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
