/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* CSS Variables */
:root {
    --primary-red: #E63946;
    --primary-green: #2A9D8F;
    --accent-maroon: #71161C;
    --accent-gold: #FFB703;
    --black: #1A1A1A;
    --white: #FFFFFF;
    
    /* Legacy variable names for compatibility */
    --primary-color: #71161C;
    --secondary-color: #E63946;
    --accent-color: #71161C;
    --dark-color: #1A1A1A;
    --light-color: #f4ede3;
    --gray-color: #6b7280;
    --gradient: linear-gradient(135deg, #71161C 0%, #5a1216 100%);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-maroon);
    border: 2px solid var(--accent-maroon);
}

.btn-secondary:hover {
    background: var(--accent-maroon);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header Font - Bebas Neue (Note: Bebas Neue Pro is premium, using Bebas Neue) */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.main-title,
.about-card h3,
.program-box-header h3,
.leader-card-pilot h4,
.leader-card-org h4,
.school-card h3,
.org-info-group h3,
.leadership-section > h3,
.contact-info h3,
.donation-info-column h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.highlight {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Override highlight in hero section for better visibility on video */
.hero .highlight {
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--accent-gold);
    text-shadow: 2px 2px 0 var(--black), -1px -1px 0 var(--black), 1px -1px 0 var(--black), -1px 1px 0 var(--black), 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-maroon);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
}

.main-title {
    font-size: 2.5rem;
    padding-top: 4px;
    font-weight: 400;
    color: var(--accent-maroon);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
}

.sub-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-color);
    line-height: 1;
}

.nav-donate {
    flex-shrink: 0;
}

.btn-donate {
    font-size: 0.95rem;
    padding: 10px 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-maroon);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Automatic alternating section backgrounds */
/* All sections default to white */
section {
    background: var(--white);
}

/* Even-numbered sections get light background (creates alternating pattern) */
section:nth-of-type(even) {
    background: var(--light-color);
}

/* Smart card backgrounds - contrast with section background */
/* Cards in white sections (odd) get light background */
section:nth-of-type(odd) .about-card,
section:nth-of-type(odd) .program-box,
section:nth-of-type(odd) .school-card,
section:nth-of-type(odd) .leader-card-pilot,
section:nth-of-type(odd) .pilot-timeline,
section:nth-of-type(odd) .tier,
section:nth-of-type(odd) .org-info-group,
section:nth-of-type(odd) .leader-card-org,
section:nth-of-type(odd) .contact-info,
section:nth-of-type(odd) .signup-form {
    background: var(--light-color);
}

/* Cards in light sections (even) get white background */
section:nth-of-type(even) .about-card,
section:nth-of-type(even) .program-box,
section:nth-of-type(even) .school-card,
section:nth-of-type(even) .leader-card-pilot,
section:nth-of-type(even) .pilot-timeline,
section:nth-of-type(even) .tier,
section:nth-of-type(even) .org-info-group,
section:nth-of-type(even) .leader-card-org,
section:nth-of-type(even) .contact-info,
section:nth-of-type(even) .signup-form {
    background: var(--white);
}

/* Hero Section - override with video background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: #1e2728 !important; /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Darker overlay for better text contrast */
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.9rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 0 var(--black), -1px -1px 0 var(--black), 1px -1px 0 var(--black), -1px 1px 0 var(--black), 0 3px 10px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhance buttons in hero section for better visibility on video */
.hero .btn-primary {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--accent-maroon);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bike-illustration {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.hero-logo {
    width: 200px;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Leader names in black, titles in primary green */
.leader-card-pilot h4,
.leader-card-org h4 {
    color: var(--black) !important;
}

.leader-title {
    color: var(--primary-green);
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Bike Trains Section */
.bike-trains {
    padding: 6rem 0;
}

.bike-trains-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bike-trains-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
}

.bike-trains-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-maroon);
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.5;
}

.bike-trains-links h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.resource-card:hover {
    border-color: var(--accent-maroon);
    background: var(--light-color);
    transform: translateX(5px);
}

.resource-card i {
    font-size: 1.25rem;
    color: var(--accent-maroon);
    flex-shrink: 0;
}

.resource-card span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.bike-trains-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Program Section */
.program {
    padding: 6rem 0;
}

.program-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-column {
    display: flex;
}

.program-box {
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    flex: 1;
}

.program-box:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.program-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.program-box-header i {
    font-size: 1.75rem;
    color: var(--accent-maroon);
}

.program-box-header h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-color);
    margin: 0;
}

.program-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-color);
    line-height: 1.5;
}

.program-features i {
    color: var(--accent-maroon);
    font-weight: 600;
    margin-top: 3px;
    flex-shrink: 0;
}

.teacher-cta {
    margin-top: 3rem;
}

.cta-content {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-text h3 {
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    flex-shrink: 0;
}

.cta-button .btn {
    background: var(--white);
    color: var(--accent-maroon);
    font-weight: 500;
    white-space: nowrap;
}

.cta-button .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* Pilot Program Section */
.pilot-program {
    padding: 6rem 0;
}

.pilot-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pilot-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.pilot-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pilot-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.school-card {
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.school-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.school-logo-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--accent-maroon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 1rem;
}

.school-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.school-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.school-subtitle {
    margin-bottom: 1rem;
}

.school-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.school-website-link:hover {
    color: var(--primary-green);
    opacity: 0.8;
}

.school-website-link i {
    font-size: 0.875rem;
}

.school-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.school-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.fact {
    background: var(--white);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.school-note {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-align: left;
}

.school-note i {
    font-size: 1.125rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.school-note p {
    color: #1e40af;
    line-height: 1.5;
    font-size: 0.875rem;
    margin: 0;
}

.pilot-timeline {
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pilot-timeline h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    text-align: center;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px #e5e7eb;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-maroon);
    box-shadow: 0 0 0 2px var(--accent-maroon);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-content h5 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark-color);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.5;
    margin: 0;
}

.leader-card-pilot {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    flex: 1;
}

.leader-card-pilot:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.leader-avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--accent-maroon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leader-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card-pilot h4 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.leader-title {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.leader-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.quality {
    background: var(--white);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Program Intro */
.program-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.program-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.program-intro p:last-child {
    margin-bottom: 0;
}

.program-intro a {
    color: var(--accent-maroon);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-maroon);
    transition: all 0.3s ease;
}

.program-intro a:hover {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* Fundraising Section */
.fundraising {
    padding: 6rem 0;
}

/* Charity Details Section */
.charity-details {
    padding: 6rem 0;
}

.org-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.org-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.org-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.org-info-group {
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.org-info-group:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.org-info-group h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-maroon);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-info-group h3 i {
    font-size: 1.125rem;
    color: var(--accent-maroon);
}

.info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item > i {
    font-size: 1rem;
    color: var(--accent-maroon);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
}

.info-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.leadership-section {
    margin-top: 3rem;
}

.leadership-section > h3 {
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leader-card-org {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.leader-card-org:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.leader-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--accent-maroon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card-org h4 {
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.leader-role {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.disclaimer-section {
    margin-top: 2rem;
}

.disclaimer-card {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.disclaimer-header i {
    font-size: 1.25rem;
    color: #f59e0b;
}

.disclaimer-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}

.disclaimer-card p {
    color: #78350f;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.disclaimer-card p:last-child {
    margin-bottom: 0;
}

.fundraising-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fundraising-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-maroon);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 500;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 16%;
    transition: width 1s ease-in-out;
}

.progress-text {
    text-align: center;
    color: var(--gray-color);
    font-weight: 500;
}

.donation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-form-column {
    display: flex;
    flex-direction: column;
}

.donation-info-column h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.donation-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.tier:hover {
    border-color: var(--accent-maroon);
    transform: translateX(3px);
}

.tier h4 {
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--accent-maroon);
    min-width: 80px;
    flex-shrink: 0;
}

.tier p {
    color: var(--gray-color);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.donate-button-container {
    text-align: center;
}

.donate-note {
    margin-top: 1rem;
    color: var(--gray-color);
    font-size: 0.875rem;
    text-align: left;
    font-style: italic;
}

/* GiveButter Widget Containers */
.givebutter-widget-container {
    text-align: center;
    margin: 2rem 0;
}

#givebutter-goal-widget {
    max-width: 600px;
    margin: 3rem auto;
}

#givebutter-form-widget {
    margin: 0 0 1rem 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.signup-form {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

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

.checkmark {
    flex-shrink: 0;
}

.contact-info {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.contact-item i {
    color: var(--accent-maroon);
    width: 16px;
    margin-top: 2px;
}

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

.social-links h4 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.social-button:hover {
    background: var(--accent-maroon);
    color: var(--white);
    transform: translateX(5px);
}

.social-button i {
    font-size: 1.25rem;
    color: var(--accent-maroon);
    transition: var(--transition);
}

.social-button:hover i {
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-size: 1.875rem;
    padding-top: 3px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Bebas Neue', cursive;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.footer-ein {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    margin: 0;
}
.footer-ein a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}
.footer-ein a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-maroon);
    transform: translateY(-2px);
}

/* Form note styling improvement */
.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid var(--accent-maroon);
}

.form-note small {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.form-note a {
    color: var(--accent-maroon);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        gap: 0.75rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-donate {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .btn-donate {
        font-size: 0.9rem;
        padding: 8px 20px;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .program-layout {
        grid-template-columns: 1fr;
    }

    .program-intro {
        text-align: left;
    }

    .program-intro p {
        font-size: 1rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .pilot-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-items::before {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .bike-trains-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .org-info-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Hide video on mobile to save bandwidth */
    .hero-video {
        display: none;
    }
    
    /* Use background image fallback on mobile */
    .hero {
        background: url('hero-bg-fallback.avif') center center / cover no-repeat !important;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 90px;
    }

    .about, .program, .fundraising, .contact {
        padding: 3rem 0;
    }

    .nav-container {
        height: 90px;
        gap: 0.5rem;
    }

    .navbar {
        position: fixed;
        top: 0;
    }

    .nav-menu {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    .btn-donate {
        font-size: 0.85rem;
        padding: 7px 18px;
    }

    .logo-img {
        height: 60px;
    }

    .logo-text {
        height: 60px;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-large {
        font-size: 16px;
        padding: 14px 28px;
    }

    .bike-illustration {
        width: 180px;
        height: 180px;
    }

    .hero-logo {
        width: 120px;
    }

    .bike-illustration i {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .fundraising-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .donation-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .donation-info-column h3 {
        text-align: center;
        font-size: 2.7rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }

    .gallery-img {
        height: 180px;
    }

    /* Increase all Bebas Neue headings by 50% on mobile */
    .about-card h3 {
        font-size: 2.7rem;
    }

    .benefit-item h4 {
        font-size: 2rem;
    }

    .bike-trains-links h3 {
        font-size: 2.25rem;
    }

    .org-info-group h3 {
        font-size: 2.25rem;
    }

    .contact-info h3 {
        font-size: 2.7rem;
    }

    .leader-card-pilot h4 {
        font-size: 2.7rem;
    }

    .leader-card-org h4 {
        font-size: 2.475rem;
    }

    .leadership-section > h3 {
        font-size: 3.15rem;
    }

    .pilot-timeline h4 {
        font-size: 2.25rem;
    }

    .timeline-content h5 {
        font-size: 1.8rem;
    }

    .tier h4 {
        font-size: 2.475rem;
    }

    .social-links h4 {
        font-size: 2rem;
    }

    .school-card h3 {
        font-size: 2.7rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding-top: 70px;
    }

    .about, .program, .fundraising, .contact {
        padding: 2rem 0;
    }

    .nav-container {
        height: 70px;
        padding: 0 10px;
        gap: 0.4rem;
    }

    .navbar {
        position: fixed;
        top: 0;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-donate {
        margin-right: 0.25rem;
    }
    
    .btn-donate {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text {
        height: 50px;
    }

    .main-title {
        font-size: 1.875rem;
    }

    .sub-title {
        font-size: 0.7rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.625rem;
        margin-bottom: 0.8rem;
    }

    .program-intro p {
        font-size: 0.95rem;
    }

    .hero-subtitle {
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 2.625rem;
        margin-bottom: 1.5rem;
    }

    .bike-illustration {
        width: 150px;
        height: 150px;
    }

    .hero-logo {
        width: 100px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-img {
        height: 160px;
    }

    .benefit-item {
        padding: 1rem;
    }

    .resource-card {
        padding: 0.875rem 1rem;
    }

    .program-box {
        padding: 1.5rem;
    }

    .program-box-header {
        flex-direction: row;
        align-items: center;
    }

    .program-box-header h3 {
        font-size: 1.875rem;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta-text h3 {
        font-size: 2.25rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

    .cta-icon i {
        font-size: 2rem;
    }

    .pilot-timeline,
    .school-card,
    .leader-card-pilot {
        padding: 1.5rem;
    }

    .school-logo-large,
    .leader-avatar-large {
        width: 120px;
        height: 120px;
    }

    .school-note {
        font-size: 0.8rem;
    }

    .school-description {
        font-size: 0.9rem;
    }

    .org-card {
        padding: 1.5rem;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .detail-value {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Further increase Bebas Neue headings on smallest screens */
    .about-card h3 {
        font-size: 2.625rem;
    }

    .benefit-item h4 {
        font-size: 1.95rem;
    }

    .bike-trains-links h3 {
        font-size: 2.2rem;
    }

    .org-info-group h3 {
        font-size: 2.2rem;
    }

    .contact-info h3 {
        font-size: 2.625rem;
    }

    .leader-card-pilot h4 {
        font-size: 2.625rem;
    }

    .leader-card-org h4 {
        font-size: 2.4rem;
    }

    .leadership-section > h3 {
        font-size: 3rem;
    }

    .pilot-timeline h4 {
        font-size: 2.2rem;
    }

    .timeline-content h5 {
        font-size: 1.75rem;
    }

    .tier h4 {
        font-size: 2.4rem;
    }

    .social-links h4 {
        font-size: 1.95rem;
    }

    .school-card h3 {
        font-size: 2.625rem;
    }

    .donation-info-column h3 {
        font-size: 2.625rem;
    }
}