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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

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

/* Color Variables */
:root {
    --primary-orange: #D08C2B;
    --secondary-beige: #F4E8D2;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.1rem;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.6rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

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

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

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

.nav-link.donate-now {
    color: var(--primary-orange);
    font-weight: 700;
}

.nav-link.donate-now:hover {
    color: #B87A1F;
}

.promo-ribbon {
    background: linear-gradient(135deg, #B87A1F, var(--primary-orange));
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 70px; /* clears the fixed navbar */
}

.promo-ribbon a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .nav-link i {
        font-size: 0.95rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url('img/Background.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    background-size: auto 750px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(183, 183, 183, 0.18);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    min-height: 60vh;
}

.hero-content {
    background: rgba(96, 96, 96, 1);
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    border-radius: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: 4vw;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.hero-logo {
    width: 100vw;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(208, 140, 43, 0.3);
}

.cta-button:hover {
    background-color: #B87A1F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 140, 43, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--secondary-beige);
}

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

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

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

.service-item h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Work Section */
.work {
    padding: 80px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: var(--secondary-beige);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--secondary-beige);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Gallery View More Button */
.gallery-view-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(208, 140, 43, 0.3);
}

.view-more-btn:hover {
    background-color: #B87A1F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 140, 43, 0.4);
}

.view-more-btn i {
    font-size: 1.2rem;
}

/* Volunteers Section */
.volunteers {
    padding: 80px 0;
    background-color: var(--secondary-beige);
}

.volunteers-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.volunteer-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.volunteer-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.volunteer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-chip i {
    color: var(--primary-orange);
}

.volunteer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.volunteer-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-orange), #f0c27b);
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(208, 140, 43, 0.25);
}

.volunteer-card h3 {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.volunteer-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.volunteer-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Volunteer Page */
.volunteer-hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #b5711f 50%, #f0c27b 100%);
    color: var(--white);
    padding: 120px 0 90px;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 999px;
}

.volunteer-hero h1 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-lede {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.secondary-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-link:hover {
    text-decoration: underline;
}

.hero-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 600;
}

.tag.solid {
    background: var(--primary-orange);
    color: var(--white);
}

.vol-section {
    padding: 80px 0;
    background: var(--white);
}

.vol-section.light {
    background: var(--secondary-beige);
}

.vol-section.highlight {
    background: linear-gradient(135deg, var(--secondary-beige), #fdf5e6);
}

.vol-section .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.overview-card {
    background: var(--secondary-beige);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.overview-card h3 {
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.routine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.routine-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.routine-card h3 {
    color: var(--primary-orange);
    margin: 0.6rem 0 0.4rem;
}

.routine-card ul {
    margin-left: 1.2rem;
    color: var(--text-light);
    line-height: 1.5;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.support-head {
    margin-bottom: 0.8rem;
}

.support-card ul {
    margin-left: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.use-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.icon-badge {
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.bullet-list {
    list-style: disc;
    margin: 1rem 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.minimum-grid {
    display: grid;
    grid-template-columns: 1fr;
}

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

.apply-copy .lead {
    text-align: left;
}

.contact-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.checkbox-group input {
    margin-right: 8px;
}

.checkbox-group.inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px 0;
    padding: 0;
}

.checkbox-group.inline input {
    width: auto;
    margin: 0;
}

.checkbox-group.inline label {
    display: inline;
    margin: 0;
    font-weight: 500;
}

.checkbox-group.inline.form-group {
    margin-bottom: 1rem;
}

.volunteer-form select,
.volunteer-form input[type=\"date\"] {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.volunteer-form select:focus,
.volunteer-form input[type=\"date\"]:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.container.narrow {
    max-width: 960px;
}

.lead.small {
    font-size: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card.info-center {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.price-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
}

.small-note {
    color: var(--text-light);
    margin-top: 0.6rem;
}

/* Dinner Experience Feature */
.dinner-feature {
    padding: 80px 0;
    background: var(--secondary-beige);
}

.dinner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.dinner-copy h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.dinner-copy p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.dinner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.dinner-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
}

.dinner-visual img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.lead.small {
    font-size: 1rem;
    margin-top: 16px;
}

.date-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.date-column h4 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.photo-grid {
    column-count: 3;
    column-gap: 1rem;
    margin-top: 2rem;
}

.photo-card {
    position: relative;
    overflow: hidden;
    margin: 0 0 1rem 0;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.photo-card figcaption {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 0.9rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
}

.gallery-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Make gallery items clearly clickable */
.gallery-item {
    cursor: pointer;
}

video.lightbox-content {
    background: #000;
}

@media (max-width: 992px) {
    .photo-grid { column-count: 2; }
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}
@media (max-width: 600px) {
    .photo-grid { column-count: 1; }
}

.inline-photo-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem;
}

.inline-photo {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 360px;
    min-width: 240px;
    flex: 1 1 260px;
}

.inline-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
}

.inline-photo figcaption {
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.apply-photo {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
}

.apply-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.apply-photo figcaption {
    margin: 0.5rem 0 0;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

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

@media (max-width: 992px) {
    .volunteer-hero {
        padding: 100px 0 70px;
    }
    
    .volunteer-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .apply-grid {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
    .volunteers-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Full Gallery Modal */
.full-gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    width: 95%;
    max-width: 1400px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    background-color: var(--secondary-beige);
}

.modal-header h2 {
    color: var(--primary-orange);
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

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

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.full-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.full-gallery-item:hover {
    transform: scale(1.05);
}

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

.full-gallery-item:hover .full-gallery-img {
    transform: scale(1.1);
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .hero {
        background: url('img/Logo.jpg') center center/contain no-repeat, #fff;
        background-size: auto 500px;
        align-items: end;
    }
}

@media (max-width: 480px) {
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

/* Appeal Section */
.appeal {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #B87A1F 100%);
    color: var(--white);
    text-align: center;
}

.appeal .section-title {
    color: var(--white);
}

.appeal .section-title::after {
    background-color: var(--white);
}

.appeal-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.appeal .cta-button {
    background-color: var(--white);
    color: var(--primary-orange);
}

.appeal .cta-button:hover {
    background-color: var(--secondary-beige);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
}

.contact-item h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.whatsapp-link {
    margin-top: 0.5rem;
}

.whatsapp-link a {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.whatsapp-link a:hover {
    color: #128C7E;
    transform: translateY(-1px);
}

.whatsapp-link i {
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--secondary-beige);
    padding: 2rem;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.submit-button {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #B87A1F;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

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

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 12px 30px rgba(0,0,0,0.16);
        padding: 1.25rem 1.25rem 2rem;
    }

    .nav-menu li { width: 100%; }

    .nav-menu .nav-link {
        justify-content: flex-start;
        width: 100%;
        padding: 13px 18px;
        border-radius: 10px;
    }

    .nav-menu .nav-link:hover {
        background: var(--secondary-beige);
        color: var(--primary-orange);
    }

    .nav-menu .nav-link::after { display: none; }

    .nav-menu .nav-link.donate-now {
        background: var(--primary-orange);
        color: #fff;
        margin-top: 0.5rem;
    }

    .nav-menu .nav-link.donate-now:hover {
        background: #B87A1F;
        color: #fff;
    }

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

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

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

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

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero {
        padding: 80px 15px 30px;
    }

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

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

    .nav-container {
        padding: 0 15px;
    }
}

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

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
} 
