/* ========================================
   PFSAQ Website - Ultra Minimal Design
   ======================================== */

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

:root {
    /* Minimal Color Palette */
    --beige: #E8DCC4;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;

    /* Accent Colors - Pride Inspired */
    --green: #2ECC71;
    --accent-purple: #8B5CF6;
    --accent-orange: #F77F00;
    --accent-pink: #EC4899;
    --accent-blue: #3B82F6;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 10rem;

    /* Typography */
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

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

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 4px 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

.btn-donate {
    background: var(--green);
    color: var(--white) !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-donate:hover {
    opacity: 0.9;
    color: var(--white) !important;
}

/* Hero */
.hero {
    background: var(--beige);
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    opacity: 0.6;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -30px;
    left: 5%;
    animation: float 15s ease-in-out infinite 5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 5%;
    animation: float 18s ease-in-out infinite 3s;
}

.hero-shape-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 20%;
    animation: float 22s ease-in-out infinite 7s;
}

.hero-shape-5 {
    width: 220px;
    height: 220px;
    top: 20%;
    left: 15%;
    animation: float 16s ease-in-out infinite 10s;
}

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

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-slogan {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--accent-blue));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    transition: left 0.3s;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    border-color: var(--black);
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--black);
    transition: width 0.3s;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

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

/* Sections */
.section {
    padding: var(--space-xxl) 0;
}

.section:nth-child(even) {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
}

.rainbow-line {
    display: none;
}

/* Slideshow Section */
.slideshow-section {
    background: var(--white);
    padding: var(--space-lg) 0;
}

/* Image Slider */
.slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
    color: var(--black);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--green), var(--accent-blue));
    background-size: 200% 100%;
    z-index: 11;
    transition: none;
}

.slider-progress.animating {
    width: 100%;
    transition: width 5s linear;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider {
        border-radius: 12px;
    }

    .slider-track {
        aspect-ratio: 4 / 3;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-track {
        aspect-ratio: 1 / 1;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn-prev {
        left: 8px;
    }

    .slider-btn-next {
        right: 8px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
}

/* About */
.about-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.about-image-small {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.3s, filter 0.3s;
}

.about-image-small:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.about-quote {
    text-align: center;
    margin: var(--space-xl) auto;
    max-width: 700px;
}


.about-quote p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--black);
    line-height: 1.4;
    font-weight: 400;
    position: relative;
}

.about-quote p::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-purple), var(--green));
    border-radius: 2px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.about-story p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pillar {
    position: relative;
    padding-left: 1rem;
}

.pillar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 30px;
    border-radius: 2px;
}

.pillar:nth-child(1)::before {
    background: var(--accent-purple);
}

.pillar:nth-child(2)::before {
    background: var(--green);
}

.pillar:nth-child(3)::before {
    background: var(--accent-orange);
}

.pillar h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.pillar p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Team */
.team-category {
    margin-bottom: var(--space-xl);
}

.team-category h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.team-member {
    background: none;
    padding: 0;
    text-align: center;
}

.team-member:hover {
    transform: none;
}

.member-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--beige);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.team-member:nth-child(3n+1) .member-photo-placeholder {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

.team-member:nth-child(3n+2) .member-photo-placeholder {
    background: linear-gradient(135deg, var(--green), var(--accent-blue));
}

.team-member:nth-child(3n+3) .member-photo-placeholder {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.volunteer-info {
    text-align: center;
    color: var(--gray);
    background: none;
    padding: 0;
    font-size: 1rem;
}

/* Programmes */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
    margin-bottom: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.programme-card {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.programme-card:hover {
    transform: none;
}

.programme-icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s;
}

.programme-card:nth-child(1) .programme-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
}

.programme-card:nth-child(2) .programme-icon {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
}

.programme-card:nth-child(3) .programme-icon {
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.1), rgba(247, 127, 0, 0.05));
}

.programme-card:nth-child(4) .programme-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.programme-card:nth-child(1) .programme-icon svg { color: var(--accent-purple); }
.programme-card:nth-child(2) .programme-icon svg { color: var(--green); }
.programme-card:nth-child(3) .programme-icon svg { color: var(--accent-orange); }
.programme-card:nth-child(4) .programme-icon svg { color: var(--accent-blue); }

.programme-icon svg {
    width: 32px;
    height: 32px;
}

.programme-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.programme-card p {
    color: var(--gray);
    line-height: 1.8;
}

.campaigns-section {
    background: none;
    padding: var(--space-lg) 0 0;
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.campaigns-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-md);
}

.campaigns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.campaign-item {
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: none;
    padding: 0;
}

.news-card:hover {
    transform: none;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resource-item {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-item:hover {
    transform: none;
}

.resource-icon {
    margin-bottom: 1.5rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon svg {
    width: 40px;
    height: 40px;
}

.resource-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Get Involved */
.get-involved {
    background: var(--beige);
}

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

.involvement-card {
    background: none;
    padding: 0;
    text-align: center;
}

.involvement-card:hover {
    transform: none;
}

.involvement-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact */
.contact-grid {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: none;
    padding: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h4 svg {
    color: var(--black);
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-item p {
    color: var(--black);
    font-size: 1rem;
}

.social-links {
    background: none;
}

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

.social-icons a {
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-icons a svg {
    flex-shrink: 0;
}

.social-icons a span {
    color: var(--gray);
}

.social-icons a:hover {
    background: var(--black);
    border-color: var(--black);
}

.social-icons a:hover svg,
.social-icons a:hover span {
    color: var(--white);
}

.contact-form {
    background: none;
    padding: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form button {
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    width: fit-content;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: var(--space-lg);
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--black);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 2rem;
        display: none;
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: var(--space-lg) 0;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-quote p {
        font-size: 1.5rem;
    }

    .about-quote p::before {
        left: 0;
        width: 3px;
    }

    .hero-shape {
        display: none;
    }

    .pillar {
        padding-left: 0.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .programmes-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .team-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.values-list li {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

.values-list li strong {
    color: var(--black);
    font-weight: 600;
}

/* Programme Subsection */
.programme-subsection {
    margin-bottom: var(--space-lg);
}

.programme-subsection h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.programmes-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.programme-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Donors Section */
.donors {
    background: var(--white);
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.donor-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.donor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--green), var(--accent-blue), var(--accent-orange));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.donor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.donor-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.donor-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    background: var(--light-gray);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.ngosource-badge {
    margin-top: var(--space-xl);
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.ngosource-img {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

/* Terms Link */
.terms-link {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.terms-link:hover {
    color: var(--black);
}

/* Terms Page */
.terms-page {
    padding-top: var(--space-xl);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.terms-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

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

.terms-section {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.terms-section p {
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-section ul li {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.terms-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Nav brand link */
.nav-brand a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

/* Mobile Responsive - New Elements */
@media (max-width: 768px) {
    .programmes-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .donor-card {
        padding: 2rem 1.5rem;
    }

    .terms-footer {
        flex-direction: column;
    }

    .terms-footer .btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .donors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}
