/* ===================================
   CSS Variables for New Color Scheme
   =================================== */

:root {
    --primary-gold: #FFD700;
    --primary-orange: #FF6600;
    --primary-green: #228B22;
    --primary-charcoal: #333333;
    --light-gold: #FFF8DC;
    --light-orange: #FFE4B5;
    --light-green: #F0FFF0;
    --dark-gold: #DAA520;
    --dark-orange: #CC5500;
    --dark-green: #006400;
    --white: #FFFFFF;
    --light-gray: #f8fafc;
    --border-gray: #e2e8f0;
    --text-gray: #64748b;
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-orange);
}

/* ===================================
   Utility Classes
   =================================== */

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

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn--primary {
    background-color: var(--primary-gold);
    color: var(--primary-charcoal);
    font-weight: 700;
}

.btn--primary:hover {
    background-color: var(--dark-gold);
    color: var(--primary-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

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

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

.btn--donate {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo h2 {
    color: var(--primary-charcoal);
    margin: 0;
    font-size: 1.5rem;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: var(--primary-charcoal);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-orange);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 50%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.1);
}

.hero__logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    max-height: 400px;
    margin: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero__content {
    position: relative;
    z-index: 3;
    margin-top: 50vh;
    background-color: var(--white);
    border-radius: 2rem 2rem 0 0;
    padding: 4rem 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.hero__title {
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
}

.hero__tagline {
    color: var(--primary-orange);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

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

/* ===================================
   Section Styles
   =================================== */

.about,
.values,
.programs,
.gallery,
.get-involved,
.contact {
    padding: 4rem 0;
}

.about {
    background-color: var(--white);
}

.values {
    background-color: var(--light-gold);
}

.programs {
    background-color: var(--white);
}

.gallery {
    background-color: var(--light-orange);
}

.get-involved {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-gold) 100%);
}

.contact {
    background-color: var(--white);
}

/* ===================================
   About Section
   =================================== */

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

.about__card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.about__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.about__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Team Section
   =================================== */

.team__section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-gray);
}

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

.team__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
}

.team__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-orange);
    background-color: var(--light-orange);
}

.team__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.team__card:hover .team__image {
    transform: scale(1.05);
}

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

.team__content h3 {
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team__role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team__quote {
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    position: relative;
}

.team__quote::before {
    content: '"';
    color: var(--primary-green);
    font-size: 2rem;
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-family: serif;
}

.team__quote::after {
    content: '"';
    color: var(--primary-green);
    font-size: 2rem;
    position: absolute;
    right: -0.5rem;
    bottom: -1rem;
    font-family: serif;
}

/* ===================================
   Values Section
   =================================== */

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

.value__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
}

.value__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-orange);
}

.value__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ===================================
   Gallery/Our Impact Section
   =================================== */

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

.gallery__item {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

.gallery__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__image img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 102, 0, 0.9) 50%, rgba(34, 139, 34, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__content {
    text-align: center;
    color: #ffffff;
    padding: 1rem;
}

.gallery__content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.gallery__content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery__caption {
    padding: 1.5rem;
    text-align: center;
}

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

/* ===================================
   Programs Section
   =================================== */

.programs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.program__card {
    background-color: var(--white);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
    border-color: var(--primary-green);
}

.program__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.program__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.program__card:hover .program__image img {
    transform: scale(1.05);
}

.program__content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.program__content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ===================================
   Get Involved Section
   =================================== */

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

.involvement__card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
}

.involvement__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
    border-color: var(--primary-green);
}

.involvement__card--featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 100%);
}

.involvement__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Contact Section
   =================================== */

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

.contact__info h3 {
    margin-bottom: 2rem;
    color: var(--primary-charcoal);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

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

.contact__item p {
    margin: 0;
    color: var(--text-gray);
}

.social__links {
    margin-top: 3rem;
}

.social__links h4 {
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.social__icons {
    display: flex;
    gap: 1rem;
}

.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--light-gold);
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social__link:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.social__link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* ===================================
   Form Styles
   =================================== */

.contact__form {
    background-color: var(--light-green);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gray);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-charcoal);
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.form__success {
    background-color: var(--light-green);
    border: 1px solid var(--primary-green);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

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

.form__success h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.form__success p {
    color: var(--dark-green);
    margin: 0;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--primary-charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer__logo p {
    color: #94a3b8;
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 215, 0, 0.2);
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--primary-gold);
    color: var(--primary-charcoal);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer__bottom p {
    color: #94a3b8;
    margin: 0;
}

/* ===================================
   Back to Top Button
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-gold);
    color: var(--primary-charcoal);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* ===================================
   Modal Styles
   =================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--primary-orange);
}

.modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal__header h3 {
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

.modal__header p {
    color: var(--text-gray);
    margin: 0;
}

.bank__details h4 {
    color: var(--primary-charcoal);
    margin-bottom: 1.5rem;
}

.bank__info {
    background-color: var(--light-gold);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.bank__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.bank__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bank__item strong {
    color: var(--primary-charcoal);
}

.bank__item span {
    color: var(--primary-charcoal);
    font-weight: 600;
}

.bank__note {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
    font-style: italic;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav__links.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about__grid,
    .values__grid,
    .programs__grid,
    .involvement__grid,
    .gallery__grid,
    .team__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item {
        min-width: 280px;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__section {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .about,
    .values,
    .programs,
    .get-involved,
    .contact {
        padding: 2.5rem 0;
    }

    .hero__content {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .modal__content {
        padding: 2rem;
        width: 95%;
    }

    .bank__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero__image {
        height: 50vh;
    }

    .hero__content {
        margin-top: 40vh;
    }
}

/* ===================================
   Responsive Design - Gallery & Team
   =================================== */

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .team__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__image {
        height: 200px;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .team__image {
        width: 100px;
        height: 100px;
    }
    
    .team__quote::before,
    .team__quote::after {
        font-size: 1.5rem;
    }
}

/* ===================================
   Animations
   =================================== */

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===================================
   Scroll Animations
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}