/* ======================================
   EXPRESSION FOUNDATION
====================================== */

:root{
    --primary-green:#4F772D;
    --secondary-green:#90A955;
    --dark-brown:#8B5A2B;
    --light-brown:#A65E2E;
    --gold:#E9B949;
    --orange:#FF6B35;
    --blue:#42B6C9;
    --cream:#FAF7F0;
    --text:#2F3A1F;
    --white:#FFFFFF;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    font-family:'DM Sans',sans-serif;
    color:var(--text);
    line-height:1.6;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav-wrapper{
display:grid;
    grid-template-columns:220px 1fr 180px;
    align-items:center;
    gap:20px;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        width:100%;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        padding:20px 0;
    }

    .btn-donate{
        display:none;
    }

    .nav-wrapper{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
}

.logo img{
    height:90px;
    width:auto;
}

nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--primary-green);
}

.btn-donate{
    background:var(--primary-green);
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-donate:hover{
    background:var(--dark-brown);
}

/* HERO */

.hero{
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#fff;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:85px;
    line-height:.95;
    margin-bottom:25px;
}

.hero .green-text{
    color:var(--primary-green);
}

.hero .brown{
    color:var(--dark-brown);
}

.hero p{
    font-size:18px;
    max-width:600px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:var(--primary-green);
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
}

.btn-secondary{
    background:#fff;
    color:var(--text);
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    border:1px solid #ddd;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
}

.hero-heading{
    position:relative;
    display:inline-block;
}

.leaf-small{
    position:absolute;
    top:0px;
    right:-60px;
    width:100px;
}

/* SECTION TITLE */

section h2{
    text-align:center;
    font-family:'Cormorant Garamond',serif;
    font-size:55px;
    margin-bottom:50px;
    color:var(--dark-brown);
}

/* MISSION */

.mission{
    background:#fff;
    padding:70px 0 30px;
}

.mission h2{
    display:none;
}

.mission-wrapper{
    display:grid;
    grid-template-columns:35% 65%;
    align-items:center;
}

.mission-left h3{
    color:#4F772D;
    font-size:34px;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.mission-left p{
    line-height:1.8;
    margin-bottom:25px;
}

.mission-btn{
    background:#4F772D;
    color:#fff;
    padding:12px 22px;
    text-decoration:none;
    border-radius:6px;
}

.mission-right{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.feature-box{
    padding:15px;
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    color:#fff;
    font-size:28px;
}

.green{
    background:#4F772D;
}

.orange{
    background:#E4572E;
}

.yellow{
    background:#E9B949;
}

/* IMPACT */

.impact{
    background:linear-gradient(
        90deg,
        #4F772D,
        #5B8A31,
        #4F772D
    );

    padding:35px 0;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.impact-grid div{
    border-right:1px solid rgba(255,255,255,.2);
}

.impact-grid div:last-child{
    border-right:none;
}

.impact-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.impact-item i{
    font-size:35px;
    color:#E9B949;
    margin-bottom:0;
}

.impact-item h3{
    color:#fff;
    margin-bottom:5px;
	font-size:30px;
}

.impact-item span{
    color:#fff;
    font-size:14px;
	display:block;
}

.hero-wave{
    margin-top:-80px;
    line-height:0;
}

.hero-wave svg{
    display:block;
    width:100%;
    height:120px;
}

/* PROGRAMS */

.programs{
    background:#fff;
    padding:70px 0;
}

.program-header{
    margin-bottom:35px;
}

.program-header h2{
    text-align:left;
    color:#4F772D;
    font-size:40px;
    margin-bottom:8px;
}

.program-header p{
    color:#666;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.program-card{
    background:#fff;
    border:1px solid #ececec;
    overflow:hidden;
}

.program-image{
    position:relative;
}

.program-image img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.program-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    position:absolute;
    left:15px;
    bottom:-25px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:20px;
}

.program-content{
    padding:35px 15px 15px;
}

.program-content h3{
    color:#222;
    font-size:20px;
    margin-bottom:10px;
}

.program-content p{
    color:#555;
    font-size:14px;
}

/* TEAM */

.team{
    padding:80px 0;
    background:#FAF7F0;
}

.team-header{
    text-align:center;
    margin-bottom:50px;
}

.team-header h2{
    color:#4F772D;
    margin-bottom:10px;
}

.team-header p{
    color:#666;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.team-content{
    padding:20px;
    text-align:center;
}

.team-content h3{
    color:#2F3A1F;
    margin-bottom:5px;
}

.team-content span{
    color:#4F772D;
    font-weight:600;
}

/* FOOTER */

.footer{
    background:#2E3B20;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer h3{
    color:var(--gold);
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons i{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.social-icons i:hover{
    background:var(--gold);
    color:#000;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-grid,
.mission-grid,
.program-grid,
.team-grid,
.footer-grid,
.impact-grid{
    grid-template-columns:1fr 1fr;
}

.hero h1{
    font-size:60px;
}

}

@media(max-width:768px){

.nav-wrapper{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-grid,
.mission-grid,
.program-grid,
.team-grid,
.footer-grid,
.impact-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero h1{
    font-size:48px;
}

.hero-buttons{
    justify-content:center;
}

.logo img{
    height:60px;
}

section h2{
    font-size:40px;
}

}

@media(max-width:991px){
    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .program-grid{
        grid-template-columns:1fr;
    }
}

/* ======================================
   EVENTS SECTION
====================================== */

.events-section{
    padding:100px 0;
    background:#FAF7F0;
}

.events-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:60px;
}

.small-title{
    display:block;
    color:#A65E2E;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
}

.events-header h2{
    font-size:72px;
    line-height:.9;
    font-family:'Cormorant Garamond',serif;
    color:#2F3A1F;
}

.calendar-btn{
    background:#1F1712;
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    letter-spacing:2px;
    font-size:13px;
}

.event-row{
    display:grid;
    grid-template-columns:120px 1fr 140px;
    align-items:center;
    padding:35px 0;
    border-top:1px solid #d8d3c8;
}

.event-date span{
    display:block;
    color:#D35A22;
    font-size:34px;
    font-weight:700;
    line-height:1;
    letter-spacing:2px;
}

.event-date small{
    color:#666;
    letter-spacing:2px;
}

.event-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:36px;
    color:#2F3A1F;
    margin-bottom:5px;
}

.event-content p{
    color:#777;
}

.event-tag{
    justify-self:end;
    padding:10px 18px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#fff;
}

.exhibition{
    background:#86916D;
}

.grant{
    background:#D7A641;
}

.summit{
    background:#C8682D;
}

.festival{
    background:#6D8750;
}
/* ==================================
   EVENTS SLIDER
================================== */

.events-slider-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.events-wrapper{
    width:100%;
    overflow:hidden;
}

.events-heading{
    text-align:center;
    margin-bottom:60px;
}

.events-heading span{
    color:#A65E2E;
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
}

.events-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    color:#4F772D;
    margin:15px 0;
}

.events-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.events-slider{
    display:flex;
    gap:30px;
    width:max-content;

    animation:autoScroll 30s linear infinite;
}

.events-slider:hover{
    animation-play-state:paused;
}

@keyframes autoScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

.events-slider::-webkit-scrollbar{
    height:8px;
}

.events-slider::-webkit-scrollbar-thumb{
    background:#4F772D;
    border-radius:20px;
}

.event-card{
    flex:0 0 350px;
    max-width:350px;

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.event-date{
    position:absolute;
    top:20px;
    left:20px;

    width:70px;
    height:70px;

    background:#4F772D;
    color:#fff;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    font-weight:700;
    font-size:20px;

    z-index:2;
}

.event-date small{
    display:block;
    font-size:11px;
    line-height:1;
    margin-top:2px;
    color:#fff;
    letter-spacing:1px;
    font-weight:600;
}

.event-content{
    padding:25px;
}

.event-content h3{
    font-size:26px;
    margin:15px 0 10px;
    color:#2F3A1F;
    font-family:'Cormorant Garamond',serif;
}

.event-content p{
    color:#666;
    line-height:1.7;
}

.event-category{
    display:inline-block;
    padding:7px 14px;
    border-radius:30px;
    color:#fff;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.exhibition{
    background:#4F772D;
}

.grant{
    background:#E9B949;
    color:#000;
}

.summit{
    background:#A65E2E;
}

.festival{
    background:#90A955;
}

.events-line{
    height:4px;
    width:180px;
    background:linear-gradient(
    90deg,
    #4F772D,
    #E9B949,
    #A65E2E
    );
    margin:0 auto 50px;
    border-radius:20px;
}

/*=========================
   GALLERY SECTION
==========================*/

.gallery-section{
    padding:100px 0;
    background:#FAF7F0;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading span{
    color:#A65E2E;
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
}

.gallery-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    color:#4F772D;
    margin:15px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:250px;
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.7)
    );

    display:flex;
    align-items:flex-end;
    padding:25px;

    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    color:#fff;
    font-size:28px;
    font-family:'Cormorant Garamond',serif;
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.large{
        grid-row:auto;
    }

}

.gallery-page{
    padding:100px 0;
    background:#FAF7F0;
}

.gallery-title{
    text-align:center;
    margin-bottom:60px;
}

.gallery-title span{
    color:#A65E2E;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.gallery-title h1{
    font-size:64px;
    color:#4F772D;
    margin:15px 0;
    font-family:
    'Cormorant Garamond',serif;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.gallery-filter button{
    border:none;
    background:#fff;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.gallery-filter .active{
    background:#4F772D;
    color:#fff;
}

.gallery-masonry{
    columns:4;
    column-gap:20px;
}

.gallery-item{
    display:block;
    margin-bottom:20px;
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    width:100%;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .gallery-masonry{
        columns:2;
    }

}

@media(max-width:768px){

    .gallery-masonry{
        columns:1;
    }

}