/* =========================
   HEADER
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.container{
    width: 92%;
    max-width: 1400px;
    margin: auto;
}


/* =========================
   MAIN HEADER
========================= */

.site-header{
   width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container{
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text{
    display: flex;
    flex-direction: column;
}

.logo-text h2{
    color: #0b5d2a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.logo-text span{
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}


/* =========================
   NAVBAR
========================= */

.navbar{
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links li{
    position: relative;
}

.nav-links > li > a{
    color: #333;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 30px 0;

    transition: 0.3s;
}

.nav-links > li > a:hover{
    color: #0b5d2a;
}

.nav-links i{
    font-size: 10px;
}


/* =========================
   ACTIVE LINK
========================= */

.nav-links > li > a.active{
    color: #0b5d2a;
}


/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu{
    position: absolute;

    top: 100%;
    left: 0;

    width: 210px;

    background: #fff;

    padding: 10px 0;

    border-radius: 5px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;

    z-index: 100;
}

.dropdown-menu li a{
    display: block;

    padding: 12px 20px;

    color: #444;

    font-size: 14px;

    transition: 0.3s;
}

.dropdown-menu li a:hover{
    background: #f2f8f4;
    color: #0b5d2a;

    padding-left: 25px;
}

.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================
   HEADER ACTIONS
========================= */

.header-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn{
    color: #0b5d2a;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 15px;

    border: 1px solid #0b5d2a;

    border-radius: 5px;

    transition: 0.3s;
}

.login-btn i{
    margin-right: 5px;
}

.login-btn:hover{
    background: #0b5d2a;
    color: #fff;
}


.donate-btn{
    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: #0b5d2a;
    color: #fff;

    padding: 11px 18px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.donate-btn:hover{
    background: #083f1d;

    transform: translateY(-2px);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
    display: none;

    border: none;
    background: transparent;

    font-size: 24px;
    color: #0b5d2a;

    cursor: pointer;
}


/* =========================
   TABLET
========================= */

@media(max-width: 1150px){

    .nav-links{
        gap: 14px;
    }

    .navbar{
        gap: 15px;
    }

    .nav-links > li > a{
        font-size: 13px;
    }

    .header-actions{
        gap: 5px;
    }

    .login-btn,
    .donate-btn{
        padding: 9px 12px;
        font-size: 13px;
    }

}


/* =========================
   MOBILE NAVIGATION
========================= */

@media(max-width: 900px){

    .header-container{
        min-height: 70px;
    }

    .menu-toggle{
        display: block;
    }

    .navbar{
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #fff;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }


    .navbar.active{
        display: flex;
    }


    .nav-links{
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .nav-links > li > a{
        padding: 14px 0;

        justify-content: space-between;

        border-bottom: 1px solid #eee;
    }


    .dropdown-menu{
        position: static;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background: #f7f9f8;

        margin-top: 5px;
    }


    .dropdown.active .dropdown-menu{
        display: block;
    }


    .header-actions{
        margin-top: 20px;

        width: 100%;

        justify-content: space-between;
    }


    .login-btn,
    .donate-btn{
        text-align: center;

        flex: 1;

        justify-content: center;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 480px){

    .container{
        width: 90%;
    }

    .logo img{
        width: 45px;
        height: 45px;
    }

    .logo-text h2{
        font-size: 17px;
    }

    .logo-text span{
        font-size: 10px;
    }

}


/* =========================
   FOOTER GENERAL
========================= */

.site-footer{
    background: #092617;
    color: #ffffff;
}

.footer-top{
    padding: 80px 0 60px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 50px;
}


/* =========================
   FOOTER LOGO
========================= */

.footer-logo{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo h2{
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-logo span{
    color: rgba(255,255,255,0.65);
    font-size: 12px;
}

.footer-about > p{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    max-width: 330px;
}


/* =========================
   FOOTER HEADINGS
========================= */

.footer-column h3{
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after{
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #0b8f45;
    margin-top: 10px;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li{
    margin-bottom: 13px;
}

.footer-column ul li a{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a::before{
    content: "›";
    color: #0b8f45;
    margin-right: 8px;
    font-size: 18px;
}

.footer-column ul li a:hover{
    color: #ffffff;
    padding-left: 5px;
}


/* =========================
   SOCIAL MEDIA
========================= */

.footer-socials{
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-socials a{
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    color: #ffffff;

    transition: 0.3s;
}

.footer-socials a:hover{
    background: #0b8f45;
    border-color: #0b8f45;
    transform: translateY(-4px);
}


/* =========================
   CONTACT INFORMATION
========================= */

.footer-contact-item{
    display: flex;
    gap: 13px;
    margin-bottom: 22px;
}

.footer-icon{
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(11,143,69,0.15);

    border-radius: 50%;

    color: #19a856;
}

.footer-contact-item span{
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-contact-item p{
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}


/* =========================
   NEWSLETTER
========================= */

.footer-newsletter{
    background: #0b5d2a;
    padding: 45px 0;
}

.newsletter-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text{
    max-width: 550px;
}

.newsletter-text span{
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    color: rgba(255,255,255,0.7);
}

.newsletter-text h2{
    font-size: 28px;
    margin: 8px 0;
}

.newsletter-text p{
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}


/* =========================
   NEWSLETTER FORM
========================= */

.newsletter-form{
    display: flex;
    width: 100%;
    max-width: 480px;
}

.newsletter-form input{
    flex: 1;

    border: none;
    outline: none;

    padding: 16px 20px;

    border-radius: 5px 0 0 5px;

    font-size: 14px;
}

.newsletter-form button{
    border: none;

    padding: 0 25px;

    background: #ffffff;

    color: #0b5d2a;

    font-size: 14px;
    font-weight: bold;

    cursor: pointer;

    border-left: 1px solid #eee;

    border-radius: 0 5px 5px 0;

    transition: 0.3s;
}

.newsletter-form button:hover{
    background: #eaf5ee;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    background: #061a0f;
    padding: 22px 0;
}

.footer-bottom-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p{
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links{
    display: flex;
    gap: 20px;
}

.footer-bottom-links a{
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    transition: 0.3s;
}

.footer-bottom-links a:hover{
    color: #ffffff;
}


/* =========================
   TABLET RESPONSIVENESS
========================= */

@media(max-width: 1000px){

    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 35px;
    }

    .newsletter-container{
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form{
        max-width: 100%;
    }

}


/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media(max-width: 650px){

    .footer-top{
        padding: 60px 0 40px;
    }

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-container{
        gap: 25px;
    }

    .newsletter-text h2{
        font-size: 24px;
    }

    .newsletter-form{
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button{
        width: 100%;
        border-radius: 5px;
        min-height: 52px;
    }

    .footer-bottom-content{
        flex-direction: column;
        text-align: center;
    }

}