/* Fereday's First Response - Carbon Copy Styles */
:root {
    --gg-pink: #E53935;
    --gg-pink-light: #FFCDD2;
    --gg-pink-dark: #C62828;
    --gg-blue: #1976D2;
    --gg-blue-light: #BBDEFB;
    --gg-blue-dark: #0D47A1;
    --gg-black: #1a1a1a;
    --gg-gray: #666;
    --gg-gray-light: #f5f5f5;
    --gg-white: #ffffff;
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gg-black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--gg-pink);
    color: white;
    padding: 12px 20px;
    z-index: 9999;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 20px;
}

/* Flash Messages */
.flash-messages {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
}

.flash {
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.flash-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.flash-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background var(--transition);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-donate {
    background: var(--gg-pink);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 16px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.dropdown li a:hover {
    background: var(--gg-pink-light);
    color: var(--gg-pink-dark);
}

.nav-item-dropdown .nav-link::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.8;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gg-black);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero.hero-voice-style {
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 40, 0.75);
    z-index: 1;
}

.hero.hero-voice-style .hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 950px;
    width: 100%;
    background: transparent;
}

/* About page hero - Mission on right */
.hero.hero-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.hero.hero-about .hero-content {
    max-width: 45%;
    padding: 60px 0;
}

.hero-mission {
    position: relative;
    z-index: 2;
    max-width: 45%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.hero-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gg-black);
}

.hero-mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gg-gray);
}

.hero-mission-text + .hero-mission-text {
    margin-top: 1rem;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.hero-line {
    display: inline-block;
    background: white;
    color: var(--gg-black);
    font-family: var(--font-body);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    padding: 16px 24px;
    line-height: 1.2;
    width: fit-content;
    white-space: nowrap;
}

.hero-line:last-child {
    color: var(--gg-pink);
}

.hero.hero-voice-style .hero-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: rgba(60, 60, 60, 0.8);
    color: white !important;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: rgba(80, 80, 80, 0.9);
}

.btn-hero-donate {
    background: var(--gg-pink) !important;
    color: white !important;
    border: 2px solid var(--gg-pink);
}

.btn-hero-donate:hover {
    background: var(--gg-pink-dark) !important;
    border-color: var(--gg-pink-dark);
}

/* Legacy hero (for pages that may use it) */
.hero-image {
    height: 100%;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gg-black);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gg-pink);
    color: white !important;
}

.btn-primary:hover {
    background: var(--gg-pink-dark);
    transform: translateY(-2px);
}

.btn-donate {
    background: var(--gg-pink);
    color: white !important;
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gg-pink);
    color: var(--gg-pink);
}

.btn-outline:hover {
    background: var(--gg-pink);
    color: white !important;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.btn-outline-light:hover {
    background: white;
    color: var(--gg-pink) !important;
}

/* Donation CTA */
.donation-cta {
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    color: white;
    padding: 60px 24px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.donation-subtitle {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.donation-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-buttons .btn-outline {
    border-color: white;
    color: white;
}

.donation-buttons .btn-outline:hover {
    background: white;
    color: var(--gg-pink) !important;
}

/* Leading Section */
.leading-section {
    padding: 80px 0;
}

.leading-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.leading-image .section-img,
.founder-image .section-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.leading-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gg-pink);
    margin-bottom: 12px;
}

.leading-text {
    font-size: 1.1rem;
    color: var(--gg-gray);
    margin: 20px 0 32px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gg-gray-light);
    padding: 80px 24px;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--gg-gray);
    margin: 16px 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gg-pink);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--gg-gray);
}

/* Award Section */
.award-section {
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    text-align: center;
}

.award-content {
    max-width: 800px;
    margin: 0 auto;
}

.award-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .award-content {
        flex-direction: column;
    }

    .award-text {
        text-align: center;
    }
}

/* Free Resources Section */
/* Events Section */
.events-section {
    padding: 80px 24px;
    background: var(--gg-gray-light);
}

.events-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title-past {
    margin-top: 80px;
}

.events-list-past {
    margin-top: 0;
}

.events-empty {
    text-align: center;
    color: var(--gg-gray);
    font-size: 1.05rem;
    padding: 48px 24px;
}

.events-section .container {
    max-width: 1000px;
}

.events-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

.event-card-image {
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.event-card-image::before {
    content: "";
    display: block;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.event-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.event-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gg-black);
}

.event-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gg-pink);
    margin-bottom: 16px;
}

.event-details,
.event-tickets {
    font-size: 1rem;
    color: var(--gg-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.event-tickets a {
    color: var(--gg-pink);
    font-weight: 600;
}

.event-tickets a:hover {
    text-decoration: underline;
}

.resources-section {
    background: var(--gg-gray-light);
    padding: 80px 24px;
    text-align: center;
}

.resources-section .section-title {
    margin-bottom: 48px;
}

.downloads-intro {
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--gg-gray);
    line-height: 1.6;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.resource-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.resource-download {
    font-size: 0.85rem;
    color: var(--gg-pink);
    font-weight: 600;
}

.resources-cta {
    text-align: center;
}

/* Milestones Section - Horizontal */
.milestones-section {
    padding: 80px 24px;
}

.milestones-section.milestones-horizontal {
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    color: white;
}

.container-milestones {
    max-width: 1100px;
}

.milestones-section .section-title {
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.milestone-timeline-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    margin: 0 auto 32px;
}

.milestone-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    max-width: 150px;
}

.milestone-connector {
    flex: 0 0 auto;
    width: 8px;
    min-width: 8px;
    height: 4px;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.3);
}

.milestone-connector.completed {
    background: rgba(255, 255, 255, 0.9);
}

.milestone-step .milestone-number {
    display: inline-block;
    width: clamp(32px, 4vw, 44px);
    height: clamp(32px, 4vw, 44px);
    line-height: clamp(32px, 4vw, 44px);
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
}

.milestone-step.completed .milestone-number {
    background: white;
    color: var(--gg-pink);
}

.milestone-step .milestone-text {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.milestone-step .milestone-status {
    font-size: 1rem;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.milestone-total {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.milestone-total strong {
    font-weight: 700;
}

.milestone-donate {
    text-align: center;
}

.milestone-donate .btn-donate {
    background: white;
    color: var(--gg-pink) !important;
}

.milestone-donate .btn-donate:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Social CTA */
.social-cta {
    background: var(--gg-black);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.social-cta .section-title {
    color: white;
}

.social-subtitle {
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.social-link {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--gg-pink);
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: white;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}


.founder-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gg-pink-dark);
    margin: 24px 0;
    padding: 24px;
    background: rgba(233, 30, 99, 0.08);
    border-radius: 8px;
    border-left: 4px solid var(--gg-pink);
}

.founder-bio {
    font-size: 1rem;
    color: var(--gg-gray);
}

.founder-bio a {
    color: var(--gg-pink);
    text-decoration: underline;
}

/* Featured Section */
.featured-section {
    padding: 60px 24px;
    background: var(--gg-gray-light);
}

.featured-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.featured-logo {
    padding: 16px 24px;
    background: white;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gg-gray);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.newsletter-inline h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-inline p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter-inline .privacy-note {
    color: rgba(255,255,255,0.8);
}

/* Page Layout (About, Learn More, Get Involved) */
.page-hero {
    padding: 120px 24px 60px;
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.page-content {
    padding: 60px 24px 80px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gg-black);
}

.content-block p {
    font-size: 1.05rem;
    color: var(--gg-gray);
    line-height: 1.7;
}

.content-block .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gg-pink);
}

.content-block.content-highlight {
    padding: 32px;
    background: var(--gg-gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--gg-pink);
}

.content-block.content-cta {
    margin-top: 48px;
    text-align: center;
}

.content-block.content-cta-block {
    padding: 32px;
    background: var(--gg-gray-light);
    border-radius: 8px;
}

.content-block.content-cta-block .btn {
    margin-top: 16px;
}

/* Project Page (About) - NGO Style */
.project-mission {
    padding: 80px 24px;
    text-align: center;
    background: white;
}

.project-mission-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gg-black);
}

.project-mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gg-gray);
    max-width: 700px;
    margin: 0 auto;
}

.project-section {
    padding: 80px 24px;
    background: var(--gg-gray-light);
}

.project-section-alt {
    background: white;
}

/* Meet the Team */
.team-section {
    background: white;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.team-section .container {
    max-width: 1200px;
    padding: 0 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.team-card {
    background: var(--gg-gray-light);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent grid blowout */
}

.team-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 aspect ratio - creates height from width */
    flex-shrink: 0;
}

.team-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-content {
    padding: 24px 20px;
    flex: 1;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gg-black);
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gg-pink);
    margin-bottom: 4px;
}

.team-occupation {
    font-size: 0.95rem;
    color: var(--gg-gray);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.project-grid-reverse {
    direction: rtl;
}

.project-grid-reverse > * {
    direction: ltr;
}

.project-image {
    overflow: hidden;
    border-radius: 8px;
}

.project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gg-black);
}

.project-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gg-gray);
    margin-bottom: 16px;
}

.project-stats {
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--gg-pink) 0%, var(--gg-pink-dark) 100%);
    color: white;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.project-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

.project-cta {
    padding: 80px 24px;
    text-align: center;
    background: var(--gg-gray-light);
}

.project-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gg-black);
}

.project-cta p {
    font-size: 1.1rem;
    color: var(--gg-gray);
    margin-bottom: 32px;
}

/* Kit locations map on About page */
.project-section-map {
    background: white;
    scroll-margin-top: 90px; /* Account for fixed header when linking to #map */
}

.map-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--gg-black);
}

.map-section-subtitle {
    text-align: center;
    color: var(--gg-gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kit-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Cluster markers - match site red theme */
.kit-map .marker-cluster-small { background-color: rgba(229, 57, 53, 0.6); }
.kit-map .marker-cluster-small div { background-color: rgba(229, 57, 53, 0.8); }
.kit-map .marker-cluster-medium { background-color: rgba(229, 57, 53, 0.6); }
.kit-map .marker-cluster-medium div { background-color: rgba(229, 57, 53, 0.8); }
.kit-map .marker-cluster-large { background-color: rgba(229, 57, 53, 0.6); }
.kit-map .marker-cluster-large div { background-color: rgba(229, 57, 53, 0.8); }

.map-container {
    width: 100%;
    margin-bottom: 48px;
}

.map-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--gg-gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gg-gray);
}

/* Blog Section */
.blog-section {
    padding: 80px 24px;
    background: var(--gg-gray-light);
}

.blog-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gg-black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition);
}

.blog-post:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 28px 32px;
}

.blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post.expanded .blog-text {
    display: block;
    -webkit-line-clamp: unset;
}

.btn-read-more {
    margin-top: 16px;
    padding: 8px 0;
    background: none;
    border: none;
    color: var(--gg-pink);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-read-more:hover {
    text-decoration: underline;
}

.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gg-black);
}

.blog-post-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gg-gray);
}

.blog-post-content .lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gg-pink);
    margin-bottom: 12px;
}

.blog-post-full {
    padding: 28px 32px;
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

/* Get Involved Section - Donate left, 2x2 grid right */
.get-involved-section {
    padding: 80px 20px;
    background: var(--gg-gray-light);
}

.get-involved-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.get-involved-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gg-black);
}

.get-involved-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: none;
    margin: 0 auto;
    align-items: stretch;
}

.donate-card-featured {
    position: relative;
    color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.donate-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/webp/2.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.donate-card-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.85) 0%, rgba(198, 40, 40, 0.85) 100%);
    z-index: 0;
}

.donate-card-content {
    position: relative;
    z-index: 1;
}

.donate-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.donate-card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.donate-card-content .btn {
    margin-top: 16px;
    background: white;
    color: black;
}

.donate-card-content .btn:hover {
    background: var(--gg-gray-light);
    color: var(--gg-pink-dark);
}

.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.involved-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.involved-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.involved-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.involved-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gg-black);
}

.involved-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gg-gray);
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.involved-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

#schools {
    scroll-margin-top: 90px;
}

@media (max-width: 900px) {
    .get-involved-layout {
        grid-template-columns: 1fr;
    }

    .get-involved-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--gg-black);
    color: white;
    padding: 60px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: var(--gg-pink-light);
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Footer contact */
.footer-col-contact p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
}

.footer-contact-label:first-of-type {
    margin-top: 0;
}

.footer-col-contact a {
    color: var(--gg-pink-light);
}

.footer-col-contact a:hover {
    color: white;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1877f2;
    color: white !important;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-facebook:hover {
    background: #166fe5;
    color: white !important;
}

.footer-col {
    text-align: left;
}

.footer-col-register {
    text-align: center;
}


.footer-col-register p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-footer-register {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gg-pink);
    color: white;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.btn-footer-register:hover {
    background: var(--gg-pink-dark);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero.hero-voice-style .hero-content {
        padding: 48px 40px;
    }

    .leading-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .leading-content,
    .founder-content {
        padding: 48px 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid,
    .project-grid-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .project-stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card-content {
        padding: 24px;
    }

    .hero.hero-about {
        flex-direction: column;
    }

    .hero.hero-about .hero-content {
        max-width: 100%;
    }

    .hero-mission {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col-contact {
        grid-column: span 2;
    }
}

/* Mobile nav when open */
body.menu-open {
    overflow: hidden;
}

.nav-open {
    display: block !important;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 40px 24px;
}

.nav-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
}

.nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 8px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-btn span {
    transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-placeholder {
        min-height: 350px;
    }

    .hero.hero-voice-style .hero-content {
        padding: 40px 24px;
    }

    .hero-line {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        padding: 12px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .milestone-timeline-horizontal {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 16px;
    }

    .milestone-connector {
        display: none;
    }

    .milestone-step {
        flex: none;
        min-width: 0;
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero.hero-about {
        flex-direction: column;
        padding: 0 24px;
    }

    .hero.hero-about .hero-content {
        max-width: 100%;
        padding: 60px 0 24px;
    }

    .hero-mission {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .project-grid,
    .project-grid-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .project-image img {
        height: 280px;
    }

    .project-stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .project-stat-number {
        font-size: 2.5rem;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-post-content {
        padding: 24px 20px;
    }

    .blog-post-full {
        padding: 28px 24px;
    }
}
