/* OUTER WRAPPER */
.hero-outer {
    width: 100%;
    background: #f3f7f4;
}

/* INNER FLEX – TRUE CENTERING */
.hero-inner {
    display: flex;
    justify-content: center;   /* 🔑 forces center */
    align-items: stretch;
    width: 100%;
}

/* CENTER PHOTO BLOCK (FIXED WIDTH) */
.hero-photo {
    position: relative;
    width: 1100px;            /* 👈 FIXED CENTER WIDTH */
    max-width: 100%;
}

/* PHOTO */
.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT OVERLAY */
.hero-text {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
}

/* SIDE GRADIENTS */
.hero-gradient {
    flex: 1;
}

/* LEFT SIDE */
.hero-gradient.left {
    background: linear-gradient(
        to right,
        #e8f5e9 0%,
        #c8e6c9 60%,
        rgba(200,230,201,0) 100%
    );
}

/* RIGHT SIDE */
.hero-gradient.right {
    background: linear-gradient(
        to left,
        #e8f5e9 0%,
        #c8e6c9 60%,
        rgba(200,230,201,0) 100%
    );
    /* FIX: Remove padding ONLY for hero section */
.hero-outer {
    padding: 0 !important;
    margin-bottom: 0;
}

}

/* MOBILE */
@media (max-width: 768px) {
    .hero-gradient {
        display: none;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9f8;
    color: #333;
    line-height: 1.6;
}

header {
    background: #2e7d32;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

header img {
    height: 70px;
    background: white;
    padding: 5px;
    border-radius: 50%;
}

.lang-btn {
    background: white;
    color: #2e7d32;
    border: none;
    padding: 6px 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

nav {
    background: #1b5e20;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background: #388e3c;
}

.hero {
    background: url("images/activity1.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 90px 10%;
}

section {
    padding: 40px 10%;
    background: white;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 25px;
}

.highlight {
    background: #e8f5e9;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

.donate-box {
    text-align: center;
}

.donate-box img {
    max-width: 220px;
    margin: 15px 0;
}

footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 15px;
}
/* CEREMONIAL FADE-IN (SLOW & ELEGANT) */
@keyframes ceremonialFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Applied ONLY when class is present */
.hero-animate .hero-photo {
    animation: ceremonialFade 2.8s ease-in-out both;
}

.hero-animate .hero-text {
    animation: ceremonialFade 3.6s ease-in-out both;
}
.center-image {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.donate-btn {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 15px;
}

.donate-btn:hover {
    background: #1b5e20;
}
