* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #16a34a;
    --luxury-green: #15803d;
    --dark-green: #166534;
    --pure-white: #FFFFFF;
    --luxury-black: #000000;
    --charcoal: #1a1a1a;
    --platinum: #f8f9fa;
    --silver: #e9ecef;
    --text-black: #000000;
    --text-gray: #000000;
    --text-gray-light: #ffffff;
    --success-bg: #e8f5e8;
    --accent-gold: #16a34a;
    --luxury-shadow: rgba(0,0,0,0.15);
    --deep-shadow: rgba(0,0,0,0.25);
    
    /* Legacy color support */
    --light-gray: #ffffff;
    --dark-gray: #000000;
    --white: #FFFFFF;
    --vibrant-orange: #16a34a;
    --vibrant-blue: #16a34a;
    --vibrant-purple: #16a34a;
    --vibrant-pink: #16a34a;
    --vibrant-yellow: #16a34a;
    --light-green: #22c55e;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Arial', 'Tahoma', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: #000000 !important;
    background-color: #FFFFFF !important;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
}

/* DEFAULT CONTRAST COMPLIANCE - SITE WIDE */
/* Only apply default colors when no background context is specified */
body > h1, body > h2, body > h3, body > h4, body > h5, body > h6,
.container > h1, .container > h2, .container > h3, .container > h4, .container > h5, .container > h6 {
    color: #000000 !important;
}

body > p, body > li, body > span,
.container > p, .container > li, .container > span {
    color: #000000 !important;
}

html {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    background: black;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 0;
}

.header-container {
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 1201px) {
    .header-container {
        padding: 0 2rem;
    }
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(22,163,74,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77,171,247,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151,117,250,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

@media (min-width: 1201px) {
    .navbar {
        padding: 1rem 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: black;
    padding: 8px;
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

@media (min-width: 1201px) {
    .logo img {
        height: 80px;
    }
}

.logo img:hover {
    transform: translateY(-1px);
}

/* Force navigation menu to be completely hidden - hamburger only */
.nav-menu {
    position: fixed !important;
    top: 100px !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 400px !important;
    height: calc(100vh - 100px) !important;
    background: #000000 !important;
    border: 2px solid #16a34a !important;
    box-shadow: -2px 0 20px rgba(0,0,0,0.4) !important;
    transition: right 0.3s ease !important;
    flex-direction: column !important;
    padding: 2rem !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    display: flex !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

/* Base navigation styles moved to universal hamburger menu section */

.btn-donate {
    background: #16a34a;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-donate.active {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

/* Mobile hamburger menu - FORCE VISIBLE on ALL screen sizes */
.mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    padding: 8px !important;
    position: relative !important;
    min-width: 40px !important;
    min-height: 32px !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show even on desktop */
@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #16a34a;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #16a34a;
}

/* Navigation menu styles - slide out menu */
.nav-menu.active {
    right: 0 !important;
}

/* Mobile menu backdrop */
.nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.nav-menu li {
    width: 100% !important;
    margin: 0 !important;
}

.nav-menu a {
    color: white !important;
    padding: 1.2rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    font-size: 1.1rem !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #16a34a !important;
    padding-left: 15px !important;
}

.nav-menu .phone-link-menu {
    background: linear-gradient(135deg, #4FC3F7, #A855F7) !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    margin-top: 1rem !important;
    text-align: center !important;
    border-bottom: none !important;
}

.nav-menu .phone-link-menu:hover {
    padding-left: 0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Desktop adjustments */
@media (min-width: 1024px) {
    .nav-menu {
        width: 450px !important;
        padding: 2.5rem !important;
        top: 120px !important;
        height: calc(100vh - 120px) !important;
    }

    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 1.4rem 0 !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #16a34a, #4FC3F7, #A855F7);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add subtle luxury backgrounds to white sections - iOS friendly */
.about, .services, .cta, .apparel-products, .featured-event, .other-events {
    background: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f6f8f7 100%);
    position: relative;
    border-top: 1px solid rgba(22,163,74,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(22,163,74,0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.about::before, .services::before, .cta::before, .apparel-products::before, .featured-event::before, .other-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FF6B35;
    background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a, #22c55e, #16a34a);
    opacity: 0.4;
}

/* Specific mental health themed section backgrounds */
.about {
    background: #f9fcfa;
    background: linear-gradient(135deg, #f9fcfa 0%, #f3f8f4 50%, #eef5f0 100%);
}

.services {
    background: #fafcfb;
    background: linear-gradient(135deg, #fafcfb 0%, #f5f9f6 50%, #f0f6f2 100%);
}

.cta {
    background: #f7fbf8;
    background: linear-gradient(135deg, #f7fbf8 0%, #f2f7f3 50%, #edf4ef 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 50%);
    animation: colorPulse 8s ease-in-out infinite;
}

@keyframes colorPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-cta {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #FFFFFF;
    color: #16a34a;
}

.btn-secondary {
    background: linear-gradient(45deg, #FF6B9D, #FF6B35);
    color: white;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #FF6B35, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

/* Section Styles - UNIVERSAL BORDERS */
section,
.mission-vision,
.about,
.services,
.apparel-hero,
.apparel-products,
.events-hero,
.featured-event,
.other-events,
.cta {
    padding: 60px 0;
    border: none !important;
    border-top: none !important;
    border-bottom: 4px ridge #16a34a !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #fafcfb 50%, #f6faf7 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(22,163,74,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(22,163,74,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4FC3F7, #A855F7, #FF6B9D);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card:hover::before {
    opacity: 0.03;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(77,171,247,0.15);
}

.founders-grid,
.services-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.founder-card,
.service-card,
.event-card {
    background: #ffffff !important;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(22,163,74,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 2px solid #16a34a !important;
    position: relative;
    transition: all 0.3s ease;
    color: #000000 !important;
}

.service-card h3,
.founder-card h3,
.event-card h3 {
    color: #16a34a !important;
    margin-bottom: 1rem !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
}

.service-card p,
.founder-card p,
.event-card p {
    color: #000000 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.founder-card:hover,
.service-card:hover,
.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.title {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Product Grid */
.products-grid {
    display: grid;
    gap: 3rem;
    margin: 3rem 0;
}

.product-category h3 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.product-variants {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.price {
    color: #16a34a;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1rem 0;
}

.size-select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #22c55e;
}

/* Shopping Cart */
.shopping-cart {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.cart-item button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
}

.cart-total {
    font-size: 1.25rem;
    margin: 1rem 0;
    text-align: right;
}

/* Event Styles */
.event-featured {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-date {
    color: #16a34a;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-detail ul {
    list-style: none;
    padding-left: 1rem;
}

.event-detail li {
    margin: 0.5rem 0;
}

.event-cta {
    text-align: center;
    margin-top: 2rem;
}

.event-frequency {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #16a34a, #4FC3F7, #A855F7);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #000000, #16a34a) !important;
    color: white !important;
    padding: 3rem 0 0;
    border-top: 4px solid #16a34a;
    width: 100%;
    margin: 0;
}

.footer-container {
    width: 100%;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: #16a34a !important;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column p,
.footer-column li,
.footer-column em,
.footer-column strong {
    color: white !important;
}

.footer-column a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #16a34a !important;
    text-decoration: underline;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #16a34a;
    color: white !important;
    background: rgba(0,0,0,0.3);
    margin: 1rem -2rem 0 -2rem;
    padding: 1.5rem 2rem 0 2rem;
}

.footer-bottom a {
    color: #16a34a !important;
    text-decoration: none;
}

/* Header buttons - always visible for all screen sizes */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .header-buttons {
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .header-buttons {
        gap: 1rem;
    }
}

.phone-link {
    background: linear-gradient(135deg, #4FC3F7, #A855F7) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 0.9rem;
}

.phone-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.phone-text {
    display: none;
}

@media (min-width: 768px) {
    .phone-text {
        display: inline;
    }
}

/* Cart and theme song buttons */
.cart-btn, .theme-song-btn {
    background: white;
    color: black;
    border: 2px solid #16a34a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-btn:hover, .theme-song-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #16a34a;
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid white;
    z-index: 10;
}

.cart-count.visible {
    display: flex;
}
    
    /* Logo adjustments for mobile/tablet */
    .logo img {
        height: 55px;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        columns: 2;
        column-gap: 1rem;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        columns: 1;
        column-gap: 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-variants {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Event Sponsors Styling */
.event-sponsors {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF6B9D 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-sponsors h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.sponsors-grid a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.sponsors-grid img {
    height: 120px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsors-grid a:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.sponsors-grid a:hover img {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Event Hero Content */
.event-hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.event-info h2 {
    color: #16a34a;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.event-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 20px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.event-flyer img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.event-flyer img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .event-sponsors h2 {
        font-size: 1.8rem;
    }
    
    .sponsors-grid {
        gap: 20px;
    }
    
    .sponsors-grid img {
        height: 90px;
        max-width: 180px;
    }
    
    .event-hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-flyer {
        order: -1;
    }
}

/* Theme Song Player Styles */
.theme-song-nav {
    margin-left: 10px;
}

.cart-nav, .theme-song-nav {
    position: relative;
}

.cart-btn, .theme-song-btn {
    background: white;
    color: black;
    border: 2px solid #16a34a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid white;
    z-index: 10;
}

.cart-count.visible {
    display: flex;
}

.cart-btn:hover, .theme-song-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #16a34a;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.theme-song-player {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 350px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid #16a34a;
    z-index: 1001;
    transition: all 0.3s ease;
    font-family: 'Arial', 'Tahoma', 'Helvetica', sans-serif !important;
    color: #333333 !important;
    transform: translateX(0);
}

.theme-song-player.hidden {
    transform: translateX(400px);
    opacity: 0;
    pointer-events: none;
}

.theme-song-player.collapsed .player-content {
    display: none;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white !important;
    font-family: 'Arial', 'Tahoma', 'Helvetica', sans-serif !important;
    border-radius: 13px 13px 0 0;
}

.player-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.music-note {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

.player-collapse-btn, .player-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.2s;
}

.player-collapse-btn:hover, .player-close-btn:hover {
    background: rgba(255,255,255,0.2);
}

.player-content {
    padding: 20px;
    color: #333333 !important;
    font-family: 'Arial', 'Tahoma', 'Helvetica', sans-serif !important;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.control-btn {
    background: #FF6B35;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.control-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    position: relative;
    flex: 1;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #4FC3F7);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.progress-slider {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 16px;
    opacity: 0;
    cursor: pointer;
}

.time-display {
    font-size: 0.85rem;
    color: #000000;
    min-width: 35px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #16a34a;
    border-radius: 50%;
    cursor: pointer;
}

.song-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.song-details {
    text-align: center;
}

.song-title {
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 5px;
}

.song-artist {
    color: #FF6B35;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.song-description {
    font-size: 0.85rem;
    color: #000000;
    line-height: 1.4;
}

.song-meta-brief {
    font-size: 0.8rem;
    margin: 8px 0;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 6px;
}

.meta-toggle {
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.2s ease;
}

.meta-toggle:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.technical-details, .production-credits {
    margin: 15px 0;
    padding: 12px;
    background: #e8f5e8;
    border-radius: 8px;
}

.technical-details ul, .production-credits ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.technical-details li, .production-credits li {
    padding: 4px 0;
    font-size: 0.8rem;
}

.song-mission {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #A855F7, #FF6B9D);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.song-mission em {
    font-style: normal;
    font-weight: 500;
}

/* Donation Page Styles */
.donation-hero {
    background: linear-gradient(135deg, #4FC3F7, #16a34a);
}

.donation-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.donation-card, .impact-card, .mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.donation-card h2 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.donation-amounts {
    margin: 2rem 0;
}

.donation-amounts h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover, .amount-btn.active {
    border-color: #16a34a;
    background: #16a34a;
    color: white;
}

.custom-amount-input {
    margin-top: 1rem;
}

.custom-amount-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #16a34a;
}

.paypal-donation-form {
    margin-top: 2rem;
}

.donate-button {
    width: 100%;
    padding: 1.5rem;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donate-button:hover {
    background: #e85a2b;
    transform: translateY(-2px);
}

.nonprofit-notice {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.nonprofit-notice p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.nonprofit-notice strong {
    color: #16a34a;
}

.impact-card {
    margin-bottom: 2rem;
}

.impact-card h3, .mission-card h3 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.impact-amount {
    background: #4FC3F7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
}

.impact-description h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.impact-description p {
    color: #000000;
    font-size: 0.9rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.stat-label {
    font-size: 0.8rem;
    color: #000000;
    text-transform: uppercase;
}

.other-ways-section {
    padding: 80px 0;
    background: white;
}

.other-ways-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #16a34a;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #FFFFFF;
    transition: transform 0.3s;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-item h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.support-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #16a34a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.support-link:hover {
    background: #22c55e;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #16a34a, #4FC3F7);
    border-radius: 6px;
    border: 2px solid #FFFFFF;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #16a34a #FFFFFF;
}

/* Photo Gallery - Masonry Layout */
.photo-gallery {
    columns: 3;
    column-gap: 1.5rem;
    margin: 0 auto;
}

.community-gallery {
    columns: 3;
    column-gap: 1.5rem;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .community-gallery {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .community-gallery {
        columns: 1;
    }
    
    .community-gallery .gallery-item {
        margin-bottom: 1rem !important;
    }
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4FC3F7, #A855F7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    user-select: none;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .theme-song-player {
        width: 300px;
        right: 10px;
        top: 70px;
    }
    
    .theme-song-nav {
        display: none; /* Hide in mobile menu for now */
    }
    
    .cart-nav {
        position: relative;
    }
    
    .cart-btn {
        position: relative;
        width: 36px;
        height: 36px;
    }
    
    .cart-count {
        position: absolute;
        top: -6px;
        right: -6px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        border: 1px solid white;
    }
    
    .player-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .volume-container {
        width: 100%;
        justify-content: center;
    }
    
    .volume-slider {
        width: 80px;
    }
}

/* Location-based Apparel Pages */
.location-apparel-hero {
    background: linear-gradient(135deg, #16a34a 0%, #4FC3F7 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.location-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.location-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.location-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.current-location {
    font-weight: bold;
}

.location-apparel-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.state-highlight, .county-highlight, .city-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #FF6B35;
    margin-bottom: 30px;
}

.local-benefits ul, .local-impact ul, .local-connection ul {
    list-style: none;
    padding: 0;
}

.local-benefits li, .local-impact li, .local-connection li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.local-benefits li:last-child, .local-impact li:last-child, .local-connection li:last-child {
    border-bottom: none;
}

.location-navigation {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.county-links, .city-links, .state-links {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.state-links {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.city-map {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.city-map h3 {
    margin-bottom: 15px;
    color: #16a34a;
}

.national-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4FC3F7;
    margin-bottom: 30px;
}

.national-benefits ul {
    list-style: none;
    padding: 0;
}

.national-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.national-benefits li:last-child {
    border-bottom: none;
}

.location-link {
    display: block;
    padding: 12px 16px;
    background: linear-gradient(135deg, #FFFFFF, #f8f9fa);
    color: #16a34a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-link:hover {
    background: linear-gradient(135deg, #4FC3F7, #A855F7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.featured-products {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.showcase-item {
    text-align: center;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    border-color: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.showcase-item h4 {
    color: #16a34a;
    margin-bottom: 8px;
}

.showcase-item p {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.city-stats {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.city-stats p {
    margin: 8px 0;
    font-weight: 500;
}

.local-message {
    background: linear-gradient(135deg, #FF6B9D, #A855F7);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
}

.local-message h4 {
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-accent {
    background: #16a34a;
    color: #000000;
}

.btn-accent:hover {
    background: #fcc419;
    transform: translateY(-2px);
}

/* Mobile Responsive for Location Pages */
@media (max-width: 768px) {
    .location-apparel-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .county-links, .city-links {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Phone and Contact Links */
.phone-link {
    background: linear-gradient(135deg, #4FC3F7, #A855F7) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.phone-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.footer-column a[href^="tel:"], 
.footer-column a[href^="mailto:"] {
    color: #16a34a !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer-column a[href^="tel:"]:hover,
.footer-column a[href^="mailto:"]:hover {
    color: #16a34a !important;
    text-decoration: underline;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.crisis-notice {
    background: linear-gradient(135deg, #16a34a, #4FC3F7);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    border: 2px solid #16a34a;
}

.crisis-link {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-decoration: none !important;
    background: #16a34a;
    border: 3px solid white;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.crisis-link:hover {
    background: white !important;
    color: #000000 !important;
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .phone-link {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
    }
    
    .crisis-notice {
        font-size: 0.9rem;
    }
}

/* iOS Safari specific fixes for backgrounds */
@supports (-webkit-appearance: none) {
    body {
        background-attachment: scroll !important;
    }
}

/* Text color fixes for dark backgrounds */
section[style*="background: #000000"],
section[style*="background-color: #000000"],
section[style*="background: black"],
.about[style*="#000000"],
.services[style*="#000000"] {
    color: white !important;
}

section[style*="background: #000000"] p,
section[style*="background-color: #000000"] p,
section[style*="background: black"] p,
.about[style*="#000000"] p,
.services[style*="#000000"] p {
    color: white !important;
}

section[style*="background: #000000"] h1,
section[style*="background: #000000"] h2,
section[style*="background: #000000"] h3,
section[style*="background: #000000"] h4,
section[style*="background: black"] h1,
section[style*="background: black"] h2,
section[style*="background: black"] h3,
section[style*="background: black"] h4 {
    color: white !important;
}

/* CONTRAST COMPLIANCE RULES - SITE WIDE */

/* White backgrounds MUST have black text */
section[style*="background: #FFFFFF"],
section[style*="background: white"],
section[style*="background: #ffffff"],
section[style*="background:#ffffff"],
section[style*="background: #fff"],
section[style*="background:#fff"] {
    color: #000000 !important;
}

section[style*="background: #FFFFFF"] p,
section[style*="background: white"] p,
section[style*="background: #ffffff"] p,
section[style*="background:#ffffff"] p,
section[style*="background: #fff"] p,
section[style*="background:#fff"] p {
    color: #000000 !important;
}

section[style*="background: #FFFFFF"] h1,
section[style*="background: #FFFFFF"] h2,
section[style*="background: #FFFFFF"] h3,
section[style*="background: #FFFFFF"] h4,
section[style*="background: white"] h1,
section[style*="background: white"] h2,
section[style*="background: white"] h3,
section[style*="background: white"] h4,
section[style*="background: #ffffff"] h1,
section[style*="background: #ffffff"] h2,
section[style*="background: #ffffff"] h3,
section[style*="background: #ffffff"] h4 {
    color: #000000 !important;
}

section[style*="background: #FFFFFF"] li,
section[style*="background: white"] li,
section[style*="background: #ffffff"] li {
    color: #000000 !important;
}

/* Black backgrounds MUST have white text */
section[style*="background: #000000"],
section[style*="background: black"],
section[style*="background: #000000"],
section[style*="background:#000000"],
section[style*="background: #000"],
section[style*="background:#000"] {
    color: #FFFFFF !important;
}

section[style*="background: #000000"] p,
section[style*="background: black"] p,
section[style*="background: #000000"] p,
section[style*="background:#000000"] p,
section[style*="background: #000"] p,
section[style*="background:#000"] p {
    color: #FFFFFF !important;
}

section[style*="background: #000000"] h1,
section[style*="background: #000000"] h2,
section[style*="background: #000000"] h3,
section[style*="background: #000000"] h4,
section[style*="background: black"] h1,
section[style*="background: black"] h2,
section[style*="background: black"] h3,
section[style*="background: black"] h4,
section[style*="background: #000000"] h1,
section[style*="background: #000000"] h2,
section[style*="background: #000000"] h3,
section[style*="background: #000000"] h4 {
    color: #FFFFFF !important;
}

section[style*="background: #000000"] li,
section[style*="background: black"] li,
section[style*="background: #000000"] li {
    color: #FFFFFF !important;
}

/* HERO SECTIONS - MUST HAVE WHITE TEXT */
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6,
.hero p, .hero span, .hero li,
section.hero h1, section.hero h2, section.hero h3, section.hero h4, section.hero h5, section.hero h6,
section.hero p, section.hero span, section.hero li,
section[class*="hero"] h1, section[class*="hero"] h2, section[class*="hero"] h3, section[class*="hero"] h4, section[class*="hero"] h5, section[class*="hero"] h6,
section[class*="hero"] p, section[class*="hero"] span, section[class*="hero"] li {
    color: white !important;
}

/* GRADIENT TEXT FALLBACK - Context-aware colors */
/* On black backgrounds - use white fallback */
section[style*="background: #000000"] h1[style*="-webkit-text-fill-color: transparent"],
section[style*="background: #000000"] h2[style*="-webkit-text-fill-color: transparent"],
section[style*="background: #000000"] h3[style*="-webkit-text-fill-color: transparent"],
section[style*="background: #000000"] h4[style*="-webkit-text-fill-color: transparent"],
section[style*="background: #000000"] h5[style*="-webkit-text-fill-color: transparent"],
section[style*="background: #000000"] h6[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h1[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h2[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h3[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h4[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h5[style*="-webkit-text-fill-color: transparent"],
section[style*="background: black"] h6[style*="-webkit-text-fill-color: transparent"] {
    color: #FFFFFF !important;
}

/* On white/light backgrounds - use green fallback */
h1[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]),
h2[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]),
h3[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]),
h4[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]),
h5[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]),
h6[style*="-webkit-text-fill-color: transparent"]:not([style*="color:"]) {
    color: #16a34a !important;
}

/* FORCE text visibility and proper contrast in all cards */
.service-card *,
.founder-card *,
.event-card *,
.card * {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Cards with white backgrounds MUST have black text - OVERRIDE ANY SECTION CONTEXT */
.service-card,
.founder-card,
.event-card,
.card {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Force black text in white background cards - HIGHEST PRIORITY */
.service-card *:not([style*="color:"]),
.founder-card *:not([style*="color:"]),
.event-card *:not([style*="color:"]),
.card *:not([style*="color:"]) {
    color: #000000 !important;
}

/* SPECIFIC OVERRIDE - Service cards in sections with black backgrounds */
section[style*="background: #000000"] .service-card p,
section[style*="background: black"] .service-card p {
    color: #000000 !important;
}

/* EMERGENCY FIX - Force all service card content to be black */
.service-card p {
    color: #000000 !important;
}

.service-card h3:not([style*="color"]) {
    color: #000000 !important;
}

/* Override any text elements inside white background cards */
.service-card p:not([style*="color"]),
.service-card li:not([style*="color"]),
.founder-card p:not([style*="color"]),
.founder-card li:not([style*="color"]),
.event-card p:not([style*="color"]),
.event-card li:not([style*="color"]),
.card p:not([style*="color"]),
.card li:not([style*="color"]) {
    color: #000000 !important;
}

/* Force black text for ALL card content regardless of inline styles - INCLUDING HEADERS */
div[style*="background: #FFFFFF"] h1:not([style*="color"]),
div[style*="background: #FFFFFF"] h2:not([style*="color"]),
div[style*="background: #FFFFFF"] h3:not([style*="color"]),
div[style*="background: #FFFFFF"] h4:not([style*="color"]),
div[style*="background: #FFFFFF"] h5:not([style*="color"]),
div[style*="background: #FFFFFF"] h6:not([style*="color"]),
div[style*="background: #FFFFFF"] p:not([style*="color"]),
div[style*="background: #FFFFFF"] li:not([style*="color"]),
div[style*="background: #FFFFFF"] span:not([style*="color"]),
div[style*="background: white"] h1:not([style*="color"]),
div[style*="background: white"] h2:not([style*="color"]),
div[style*="background: white"] h3:not([style*="color"]),
div[style*="background: white"] h4:not([style*="color"]),
div[style*="background: white"] h5:not([style*="color"]),
div[style*="background: white"] h6:not([style*="color"]),
div[style*="background: white"] p:not([style*="color"]),
div[style*="background: white"] li:not([style*="color"]),
div[style*="background: white"] span:not([style*="color"]) {
    color: #000000 !important;
}

/* Also target cards specifically */
.service-card h1:not([style*="color"]),
.service-card h2:not([style*="color"]),
.service-card h3:not([style*="color"]),
.service-card h4:not([style*="color"]),
.service-card h5:not([style*="color"]),
.service-card h6:not([style*="color"]),
.founder-card h1:not([style*="color"]),
.founder-card h2:not([style*="color"]),
.founder-card h3:not([style*="color"]),
.founder-card h4:not([style*="color"]),
.founder-card h5:not([style*="color"]),
.founder-card h6:not([style*="color"]),
.event-card h1:not([style*="color"]),
.event-card h2:not([style*="color"]),
.event-card h3:not([style*="color"]),
.event-card h4:not([style*="color"]),
.event-card h5:not([style*="color"]),
.event-card h6:not([style*="color"]),
.card h1:not([style*="color"]),
.card h2:not([style*="color"]),
.card h3:not([style*="color"]),
.card h4:not([style*="color"]),
.card h5:not([style*="color"]),
.card h6:not([style*="color"]) {
    color: #000000 !important;
}

/* Enhanced mobile backgrounds for better text visibility */
@media (max-width: 768px) {
    body {
        background: #f8fdf9 !important;
        background-image: linear-gradient(to bottom, #f8fdf9 0%, #f1f8f2 50%, #e8f5ea 100%) !important;
        background-attachment: scroll !important;
    }
    
    /* Ensure sections have proper backgrounds on mobile */
    .about, .services, .apparel-products, .featured-event, .other-events {
        background: #f9fcfa !important;
        border: 1px solid rgba(22,163,74,0.1) !important;
        box-shadow: 0 2px 10px rgba(22,163,74,0.05) !important;
    }
    
    /* Keep CTA section black on mobile */
    .cta {
        background: #000000 !important;
        color: white !important;
    }
    
    .card, .founder-card, .service-card, .event-card {
        background: #ffffff !important;
        border: 1px solid rgba(22,163,74,0.12) !important;
        box-shadow: 0 4px 15px rgba(22,163,74,0.08) !important;
    }
    
    /* Ensure good text contrast on mobile - CRITICAL */
    section[style*="background: white"] h1,
    section[style*="background: white"] h2,
    section[style*="background: white"] h3,
    section[style*="background: white"] h4,
    section[style*="background: #FFFFFF"] h1,
    section[style*="background: #FFFFFF"] h2,
    section[style*="background: #FFFFFF"] h3,
    section[style*="background: #FFFFFF"] h4,
    section[style*="background: #ffffff"] h1,
    section[style*="background: #ffffff"] h2,
    section[style*="background: #ffffff"] h3,
    section[style*="background: #ffffff"] h4 {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    section[style*="background: #000000"] h1,
    section[style*="background: #000000"] h2,
    section[style*="background: #000000"] h3,
    section[style*="background: #000000"] h4,
    section[style*="background: black"] h1,
    section[style*="background: black"] h2,
    section[style*="background: black"] h3,
    section[style*="background: black"] h4,
    section[style*="background: #000000"] h1,
    section[style*="background: #000000"] h2,
    section[style*="background: #000000"] h3,
    section[style*="background: #000000"] h4 {
        color: #FFFFFF !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;
    }
    
    section[style*="background: white"] p,
    section[style*="background: white"] li,
    section[style*="background: #FFFFFF"] p,
    section[style*="background: #FFFFFF"] li,
    section[style*="background: #ffffff"] p,
    section[style*="background: #ffffff"] li {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    section[style*="background: #000000"] p,
    section[style*="background: #000000"] li,
    section[style*="background: black"] p,
    section[style*="background: black"] li,
    section[style*="background: #000000"] p,
    section[style*="background: #000000"] li {
        color: #FFFFFF !important;
        text-shadow: none !important;
    }
    
    /* Mobile body defaults for contrast compliance */
    body {
        color: #000000 !important;
        background-color: #FFFFFF !important;
    }
    
    /* Force visibility in cards on mobile - INCLUDING HEADERS - BLACK TEXT ON WHITE CARDS */
    .service-card h1, .service-card h2, .service-card h3, .service-card h4, .service-card h5, .service-card h6,
    .service-card p, .service-card li,
    .founder-card h1, .founder-card h2, .founder-card h3, .founder-card h4, .founder-card h5, .founder-card h6,
    .founder-card p, .founder-card li,
    .event-card h1, .event-card h2, .event-card h3, .event-card h4, .event-card h5, .event-card h6,
    .event-card p, .event-card li,
    .card h1, .card h2, .card h3, .card h4, .card h5, .card h6,
    .card p, .card li {
        color: #000000 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Extra mobile rule for service cards specifically */
    .service-card p {
        color: #000000 !important;
    }
}

/* FINAL ABSOLUTE OVERRIDE - END OF FILE */
.service-card p,
.service-card li,
.founder-card p,
.founder-card li,
.card p,
.card li {
    color: #000000 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* GLOBAL NUCLEAR FIX - APPLIES TO ALL DEVICES */
* {
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    text-rendering: optimizeLegibility !important;
}

/* FORCE ALL TEXT TO BE VISIBLE */
h1, h2, h3, h4, h5, h6, p, li, span, div, a {
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* ALL CARD ELEMENTS MUST BE VISIBLE */
.service-card, .card, .founder-card, .event-card {
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card *, .card *, .founder-card *, .event-card * {
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* WHITE BACKGROUND CARDS - BLACK TEXT */
div[style*="background: #FFFFFF"],
div[style*="background: #FFFFFF"],
div[style*="background: white"] {
    background: #FFFFFF !important;
    color: #000000 !important;
}

div[style*="background: #FFFFFF"] *,
div[style*="background: #FFFFFF"] *,
div[style*="background: white"] * {
    color: #000000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* BLACK BACKGROUND SECTIONS - WHITE TEXT */
section[style*="background: #000000"],
section[style*="background: #000000"],
section[style*="background: black"] {
    background: #000000 !important;
    color: #FFFFFF !important;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    /* ENSURE CONSISTENT BACKGROUNDS */
    section[style*="background: #000000"],
    section[style*="background: #000000"] {
        background: #000000 !important;
    }
    
    /* FORCE GRID LAYOUTS TO SINGLE COLUMN */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Special case for hero sections - minimal shadow for readability */
    .hero h1, .hero h2, .hero p, .hero .hero-subtitle, .hero .hero-text {
        text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    }
}

/* EMERGENCY FIX - All elements in cards MUST be black text */
div.card p,
div.card li,
div.card h3,
div.card ul,
.card * {
    color: #000000 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* NUCLEAR OPTION - Override any white text in white containers */
div[style*="background: #FFFFFF"] *,
div[style*="background: white"] * {
    color: #000000 !important;
    visibility: visible !important;
}

/* ABSOLUTE FINAL NUCLEAR OPTION - FORCE VISIBILITY EVERYWHERE */
p:not([style*="color: white"]):not([style*="color: #FFFFFF"]) {
    color: #000000 !important;
}

li:not([style*="color: white"]):not([style*="color: #FFFFFF"]) {
    color: #000000 !important;
}

h3:not([style*="color:"]):not(.hero h3):not(section[style*="black"] h3) {
    color: #000000 !important;
}

/* Override sections with white/light backgrounds */
section[style*="background: #FFFFFF"] p,
section[style*="background: #FFFFFF"] li,
section[style*="background: #FFFFFF"] h1,
section[style*="background: #FFFFFF"] h2,
section[style*="background: #FFFFFF"] h3,
section[style*="background: #FFFFFF"] h4,
section[style*="background: white"] p,
section[style*="background: white"] li,
section[style*="background: white"] h1,
section[style*="background: white"] h2,
section[style*="background: white"] h3,
section[style*="background: white"] h4 {
    color: #000000 !important;
    visibility: visible !important;
    opacity: 1 !important;
}