/* =========================================
   GENERAL
========================================= */

:root{
    --primary: #08783f;
    --primary-dark: #045c2f;
    --gold: #d9a31a;
    --dark: #123524;
    --text: #666;
    --light: #f6f8f7;
    --white: #ffffff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.7;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section{
    padding: 100px 0;
}


/* =========================================
   BUTTONS
========================================= */

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 28px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary{
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover{
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline{
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover{
    background: var(--white);
    color: var(--primary);
}

.btn-gold{
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover{
    transform: translateY(-3px);
}

.btn-outline-light{
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover{
    background: var(--white);
    color: var(--primary);
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading{
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span{
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-heading h2{
    color: var(--dark);
    font-size: 2.4rem;
    margin-top: 8px;
}

.heading-line{
    width: 65px;
    height: 4px;
    background: var(--gold);
    margin: 18px auto 0;
}

.section-button{
    text-align: center;
    margin-top: 50px;
}


/* =========================================
   HERO
========================================= */

.hero{
    min-height: 650px;

    padding: 0;

    display: flex;
    align-items: center;

    position: relative;

    background:
        url("../img/10.jpg")
        center/cover no-repeat;
}

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 45, 25, 0.92),
            rgba(0, 90, 50, 0.72),
            rgba(0, 0, 0, 0.15)
        );
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-text{
    max-width: 750px;
    color: var(--white);
}

.hero-tag{
    display: inline-block;

    color: var(--gold);

    font-size: 0.85rem;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.hero h1{
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero h2{
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero p{
    max-width: 650px;

    color: #f1f1f1;

    margin-bottom: 30px;
}

.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================
   APHORISM
========================================= */

.aphorism-section{
    background: var(--primary);
    padding: 70px 0;
}

.aphorism-content{
    display: flex;
    align-items: center;
    gap: 40px;
}

.aphorism-icon{
    min-width: 90px;
    height: 90px;

    border: 2px solid rgba(255,255,255,0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 2.5rem;
}

.aphorism-text{
    color: var(--white);
}

.aphorism-text span{
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.aphorism-text h2{
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 8px 0 12px;
}

.aphorism-text p{
    color: #e7eee9;
}

.aphorism-text small{
    color: var(--gold);
}


/* =========================================
   EVENTS
========================================= */

.events-section{
    background: var(--light);
}

.events-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card{
    background: var(--white);
    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

.event-card:hover{
    transform: translateY(-8px);
}

.event-image{
    height: 240px;
    position: relative;
    overflow: hidden;
}

.event-image img{
    height: 100%;
    object-fit: cover;

    transition: 0.4s;
}

.event-card:hover img{
    transform: scale(1.08);
}

.event-date{
    position: absolute;

    top: 15px;
    left: 15px;

    background: var(--gold);
    color: var(--white);

    padding: 6px 12px;

    font-size: 0.7rem;
    font-weight: bold;
}

.event-content{
    padding: 28px;
}

.event-category{
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.event-content h3{
    color: var(--dark);
    margin: 8px 0 12px;
    font-size: 1.3rem;
}

.event-content p{
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.event-content a{
    color: var(--primary);
    font-weight: bold;
}

.event-content a i{
    margin-left: 5px;
}


/* =========================================
   MISSION & VISION
========================================= */

.mission-vision{
    background: var(--white);
}

.mv-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card{
    display: flex;
    gap: 25px;

    padding: 45px;

    background: var(--light);

    border-left: 5px solid var(--primary);

    transition: 0.3s;
}

.mv-card:hover{
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.mv-icon{
    min-width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    font-size: 1.8rem;

    border-radius: 50%;
}

.mv-card span{
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.mv-card h2{
    color: var(--dark);
    margin: 5px 0 10px;
}

.mv-card p{
    color: var(--text);
    margin-bottom: 15px;
}

.mv-card a{
    color: var(--primary);
    font-weight: bold;
}


/* =========================================
   NEWS
========================================= */

.news-section{
    background: var(--light);
}

.news-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card{
    background: var(--white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.news-image{
    height: 220px;
    position: relative;
}

.news-image img{
    height: 100%;
    object-fit: cover;
}

.news-label{
    position: absolute;
    bottom: 0;
    left: 0;

    background: var(--primary);
    color: var(--white);

    padding: 7px 15px;

    font-size: 0.7rem;
    font-weight: bold;
}

.news-content{
    padding: 28px;
}

.news-date{
    font-size: 0.8rem;
    color: #999;
}

.news-date i{
    color: var(--gold);
    margin-right: 5px;
}

.news-content h3{
    margin: 12px 0;
    color: var(--dark);
}

.news-content p{
    color: var(--text);
    margin-bottom: 18px;
}

.news-content a{
    color: var(--primary);
    font-weight: bold;
}


/* =========================================
   PROJECT SUPPORT
========================================= */

.project-section{
    position: relative;

    background:
        url("images/project-bg.jpg")
        center/cover no-repeat;

    color: var(--white);
}

.project-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0, 60, 32, 0.92);
}

.project-grid{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;

    align-items: center;
}

.project-content span{
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.project-content h2{
    font-size: 2.8rem;
    margin: 10px 0;
}

.project-content p{
    color: #e3ece6;
    margin-bottom: 25px;
}

.title-line{
    width: 65px;
    height: 4px;

    background: var(--gold);

    margin: 15px 0 25px;
}

.account-card{
    background: var(--white);
    color: #333;

    padding: 45px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.account-icon{
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    font-size: 1.5rem;

    margin-bottom: 20px;
}

.account-card h3{
    color: var(--dark);
    margin-bottom: 20px;
}

.account-info{
    display: grid;
    gap: 18px;
}

.account-info div{
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.account-info span,
.account-info strong{
    display: block;
}

.account-info span{
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
}

.account-info strong{
    color: var(--primary);
    margin-top: 3px;
}


/* =========================================
   PRESS RELEASE
========================================= */

.press-section{
    background: var(--white);
}

.press-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.press-card{
    border: 1px solid #eee;
    transition: 0.3s;
}

.press-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.press-image{
    height: 200px;
}

.press-image img{
    height: 100%;
    object-fit: cover;
}

.press-content{
    padding: 25px;
}

.press-date{
    color: #999;
    font-size: 0.8rem;
}

.press-date i{
    color: var(--gold);
}

.press-content h3{
    color: var(--dark);
    margin: 10px 0;
}

.press-content p{
    color: var(--text);
    margin-bottom: 15px;
}

.press-content a{
    color: var(--primary);
    font-weight: bold;
}


/* =========================================
   GALLERY
========================================= */

.gallery-section{
    background: var(--primary);
}

.light-heading span{
    color: var(--gold);
}

.light-heading h2{
    color: var(--white);
}

.gallery-grid{
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 12px;
}

.gallery-item{
    position: relative;
    overflow: hidden;
}

.gallery-large{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.gallery-item:hover img{
    transform: scale(1.1);
}

.gallery-overlay{
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 20px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.8)
        );

    color: var(--white);

    opacity: 0;

    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity: 1;
}


/* =========================================
   RESOURCES
========================================= */

.resources-section{
    background: var(--light);
}

.resources-content{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;

    align-items: center;
}

.resources-content h2{
    color: var(--dark);
    font-size: 2.5rem;
    margin: 10px 0;
}

.resources-content p{
    color: var(--text);
}

.resources-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card{
    background: var(--white);

    padding: 30px 20px;

    text-align: center;

    color: var(--dark);

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.resource-card:hover{
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
}

.resource-card i{
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.resource-card h3{
    margin-bottom: 8px;
}

.resource-card p{
    font-size: 0.85rem;
    color: inherit;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-section{
    background: var(--dark);
    padding: 70px 0;
}

.newsletter-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    align-items: center;

    color: var(--white);
}

.newsletter-content span{
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.newsletter-content h2{
    font-size: 2.2rem;
    margin: 8px 0;
}

.newsletter-content p{
    color: #d6dfd9;
}

.newsletter-form{
    display: flex;
}

.newsletter-form input{
    width: 100%;

    border: none;
    outline: none;

    padding: 17px 20px;

    font-size: 0.95rem;
}

.newsletter-form button{
    border: none;

    background: var(--gold);
    color: var(--white);

    padding: 0 25px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s;
}

.newsletter-form button:hover{
    background: #bd8b0e;
}


/* =========================================
   TABLET RESPONSIVENESS
========================================= */

@media(max-width: 992px){

    .hero h1{
        font-size: 3.5rem;
    }

    .events-grid,
    .news-grid,
    .press-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid article:last-child,
    .news-grid article:last-child,
    .press-grid article:last-child{
        grid-column: span 2;
    }

    .project-grid,
    .resources-content{
        grid-template-columns: 1fr;
    }

    .resources-grid{
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   MOBILE RESPONSIVENESS
========================================= */

@media(max-width: 700px){

    section{
        padding: 70px 0;
    }

    .hero{
        min-height: 600px;
    }

    .hero h1{
        font-size: 2.8rem;
    }

    .hero h2{
        font-size: 1.4rem;
    }

    .aphorism-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .aphorism-text h2{
        font-size: 1.4rem;
    }

    .events-grid,
    .news-grid,
    .press-grid,
    .mv-grid{
        grid-template-columns: 1fr;
    }

    .events-grid article:last-child,
    .news-grid article:last-child,
    .press-grid article:last-child{
        grid-column: auto;
    }

    .mv-card{
        flex-direction: column;
        padding: 30px;
    }

    .project-grid{
        gap: 40px;
    }

    .project-content h2{
        font-size: 2rem;
    }

    .account-card{
        padding: 30px;
    }

    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-large{
        grid-column: span 2;
        grid-row: span 1;
    }

    .resources-grid{
        grid-template-columns: 1fr;
    }

    .newsletter-content{
        grid-template-columns: 1fr;
    }

    .newsletter-form{
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form button{
        padding: 16px;
    }

    .section-heading h2{
        font-size: 2rem;
    }

}


@media(max-width: 450px){

    .hero{
        min-height: 550px;
    }

    .hero h1{
        font-size: 2.3rem;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons .btn{
        width: 100%;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-large{
        grid-column: auto;
    }

}