/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --accent-color: #f4a261;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --sage-green: #8fa589;
    --soft-cream: #f5f1e8;
    --gold: #c9a961;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

.section {
    padding: 80px 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.logo img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
        width: 60px;
    }
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav-donate {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
}

.btn-nav-donate:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
}

.btn-nav-donate::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.9), rgba(143, 165, 137, 0.8)),
                url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=2022') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--gold);
    color: white;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission-section {
    background-color: var(--soft-cream);
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

/* Founders Section */
.founders-section {
    margin-top: 5rem;
}

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

.founder-story {
    margin-bottom: 3rem;
}

.founder-quote {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.founder-quote p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.founder-name {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
}

.founder-name span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   PROGRAMS SECTION
   =================================== */
.programs-section {
    background-color: white;
}

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

.program-card {
    background: var(--soft-cream);
    padding: 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.program-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-card > *:not(.program-image) {
    padding: 0 2.5rem;
}

.program-card h3,
.program-card p {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.program-card p:last-child {
    padding-bottom: 2.5rem;
}

.program-icon {
    font-size: 3rem;
    margin: 1.5rem 0 1rem 2.5rem;
}

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

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    background-color: var(--soft-cream);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

/* Student Voices */
.student-voices {
    margin-top: 5rem;
    text-align: center;
}

.student-voices h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.advocacy-image {
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto 2rem;
}

.voices-quotes {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.voices-quotes p {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
    color: white;
}

.impact-section .section-header h2,
.impact-section .beliefs-section h3 {
    color: white;
}

.impact-section .section-divider {
    background: linear-gradient(90deg, white, var(--gold));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.9);
}

/* Beliefs Section */
.beliefs-section {
    margin-top: 5rem;
}

.beliefs-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.belief-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.belief-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.belief-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   DONATE SECTION
   =================================== */
.donate-section {
    background-color: var(--soft-cream);
}

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

.donate-option {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.donate-option-wide {
    grid-column: 1;
}

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

/* Givebutter Button */
.btn-donate {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    margin: 1.5rem auto;
    text-align: center;
    display: block;
    max-width: 400px;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #d4af37, var(--gold));
}

.donation-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.givebutter-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--soft-cream);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.givebutter-qr {
    margin-bottom: 1.5rem;
}

.givebutter-qr .qr-code {
    max-width: 200px;
    margin: 0 auto;
}

.qr-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.qr-divider {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    position: relative;
}

.qr-divider::before,
.qr-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: var(--primary-color);
}

.qr-divider::before {
    left: 0;
}

.qr-divider::after {
    right: 0;
}

.donation-widget {
    margin-top: 1.5rem;
}

.widget-note {
    color: var(--text-light);
    font-style: italic;
}

/* Sponsor Levels */
.sponsor-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .sponsor-levels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sponsor-levels {
        grid-template-columns: 1fr;
    }
}

.sponsor-level {
    background: var(--soft-cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sponsor-level:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.sponsor-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sponsor-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Zelle Section */
.zelle-info {
    text-align: center;
}

.zelle-qr {
    margin: 1.5rem 0;
}

.qr-code {
    max-width: 250px;
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zelle-instructions {
    text-align: left;
    background: var(--soft-cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.zelle-instructions p {
    margin-bottom: 0.5rem;
}

.zelle-instructions ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.zelle-instructions li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.zelle-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }
    
    .donate-option-wide {
        grid-column: 1;
    }
    
    .sponsor-levels {
        grid-template-columns: 1fr;
    }
    
    .btn-donate {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .qr-code {
        max-width: 200px;
    }
}
    font-weight: 700;
    color: var(--primary-color);
}

.sponsor-desc {
    color: var(--text-light);
}

.zelle-info {
    margin-top: 2rem;
}

.zelle-detail {
    background: var(--soft-cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.zelle-qr {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.volunteer-cta {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 4rem;
}

.volunteer-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.volunteer-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tax Information */
.tax-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tax-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.tax-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tax-detail {
    text-align: center;
}

.tax-detail strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.tax-note {
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: white;
}

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

.contact-info {
    background: var(--soft-cream);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .mission-grid,
    .programs-grid,
    .impact-grid,
    .beliefs-grid,
    .donate-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tax-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .impact-number {
        font-size: 3rem;
    }

    .logo span {
        font-size: 1rem;
    }
}
