/* =========================
   HERO SECTION
========================= */

.hero {
    background-color: var(--background-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
}

/* HERO CONTENT */

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    max-width: 600px;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* HERO IMAGE */

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* =========================
   ABOUT PREVIEW
========================= */

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

/* =========================
   STATISTICS SECTION
========================= */

.statistics {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

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

.stat-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
}

/* =========================
   EVENTS SECTION
========================= */

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

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* EVENT CARD */

.event-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100;
}

/* CARD HOVER */
.event-card:hover {
    transform: translateY(-5px);
}

/* EVENT IMAGE */
.event-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* EVENT CONTENT */
.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* EVENT TITLE */
.event-content h3 {
    margin-bottom: 15px;
}

/* EVENT TEXT */
.event-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* EVENT BUTTON */

.event-content .btn {
    margin-top: auto;
}

/* =========================
   LEADERSHIP SECTION
========================= */

.leadership {
    background-color: var(--background-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leader-card {
    text-align: center;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.leader-card img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-grid img {
    border-radius: var(--border-radius);
    height: 300px;
}

/* =========================
   ANNOUNCEMENTS
========================= */

.announcements {
    background-color: var(--background-gray);
}

/* =========================
   DONATION SECTION
========================= */

.donation {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.donation h2,
.donation p {
    color: var(--text-light);
}

.donation p {
    margin: 20px auto;
    max-width: 700px;
}

/* =========================
   NEWSLETTER SECTION
========================= */

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

.newsletter-content {
    text-align: center;
}

.newsletter-content p {
    margin: 20px auto;
    max-width: 700px;
}

/* NEWSLETTER FORM */

.newsletter-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 1rem;
}