
/* ===================================================
   HEADER / NAVBAR STYLES
=================================================== */

.site-header{
    background:#ffffff;
    box-shadow:0 4px 14px rgba(0,0,0,.06);
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    max-width:1200px;
    margin:0 auto;
    padding:14px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* Logo / Brand */
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand-logo{
    height:52px;
    width:auto;
    display:block;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.3;
}

.brand-text strong{
    font-size:18px;
    font-weight:700;
    color:#0f766e;
}

.brand-text span{
    font-size:12px;
    font-weight:500;
    color:#6b7280;
    letter-spacing:.5px;
}

/* Navigation */
.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-nav a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
    font-size:15px;
    transition:.3s;
    position:relative;
}

.main-nav a:hover,
.main-nav a.active{
    color:#0f766e;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#16a34a;
    transition:.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width:100%;
}

/* Mobile nav links use vertical layout, no underline animation needed */
@media (max-width:992px){
    .main-nav a::after{
        display:none;
    }
}

/* Language Selector */
.language-selector{
    display:flex;
    align-items:center;
}

.language-selector select{
    padding:8px 14px;
    border:1px solid #d1d5db;
    border-radius:20px;
    font-size:14px;
    color:#374151;
    background:#fff;
    outline:none;
    cursor:pointer;
    transition:.3s;
}

.language-selector select:focus{
    border-color:#0f766e;
    box-shadow:0 0 0 4px rgba(15,118,110,.15);
}

/* Mobile Toggle Button */
.nav-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:#0f766e;
    cursor:pointer;
    line-height:1;
    padding:4px 8px;
}

/* Responsive */
@media (max-width:992px){

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px 24px;
        box-shadow:0 12px 20px rgba(0,0,0,.08);
        display:none;
    }

    .main-nav.is-open{
        display:flex;
    }

    .main-nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
        width:100%;
    }

    .nav-toggle{
        display:block;
    }

    .header-inner{
        flex-wrap:wrap;
        position:relative;
    }
}

@media (max-width:480px){

    .brand-logo{
        height:42px;
    }

    .brand-text strong{
        font-size:15px;
    }

    .brand-text span{
        font-size:10px;
    }
}


/* ===================================================
   COMMON PAGE STYLES
=================================================== */


.section{
    padding:80px 0;
}

.page-title{
    text-align:center;
    margin-bottom:60px;
}

.page-title h1{
    font-size:42px;
    font-weight:700;
    color:#0f766e;
    margin-bottom:15px;
}

.page-title p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#374151;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;
    padding:14px 16px;
    border:1px solid #d1d5db;
    border-radius:10px;
    outline:none;
    transition:.3s;
    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#0f766e;
    box-shadow:0 0 0 4px rgba(15,118,110,.15);

}

.btn{

    display:inline-block;
    background:#0f766e;
    color:#fff;
    padding:14px 32px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;

}

.btn:hover{

    background:#16a34a;
    transform:translateY(-2px);

}
.contact-section{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}
/* ================= DONATE PAGE ================= */


.donate-section{

padding:70px 0;

}


.donate-box{

max-width:600px;
margin:auto;
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.1);

}


.donate-box label{

display:block;
margin-bottom:8px;
font-weight:600;

}


.donate-box input,
.donate-box select{

width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
margin-bottom:20px;
font-size:16px;

}


.donate-box button{

background:#16a34a;
color:white;
border:none;
padding:15px 40px;
font-size:17px;
border-radius:30px;
cursor:pointer;

}


.donate-box button:hover{

background:#0f766e;

}
/* ================= VOLUNTEER PAGE ================= */


.volunteer-section{

padding:70px 0;

}



.page-title{

text-align:center;
margin-bottom:50px;

}


.page-title h1{

font-size:38px;
color:#0f766e;
margin-bottom:15px;

}



.volunteer-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}



.volunteer-info,
.volunteer-form{

background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);

}



.volunteer-info h2,
.volunteer-form h2{

color:#0f766e;
margin-bottom:20px;

}



.volunteer-info ul{

list-style:none;
margin-top:20px;

}



.volunteer-info li{

margin-bottom:15px;
font-size:16px;

}



.form-group{

margin-bottom:20px;

}



.form-group label{

display:block;
font-weight:600;
margin-bottom:8px;

}



.form-group input,
.form-group textarea{

width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;

}



.volunteer-form button{

background:#16a34a;
color:#fff;
border:none;
padding:15px 35px;
border-radius:30px;
cursor:pointer;
font-size:16px;

}



.volunteer-form button:hover{

background:#0f766e;

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-item{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-placeholder{
    height:220px;
    background:linear-gradient(135deg,#dbeafe,#f3f4f6);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#6b7280;
}

/* ================= EVENTS PAGE ================= */


.events-section{

padding:70px 0;

}



.page-title{

text-align:center;
margin-bottom:50px;

}


.page-title h1{

font-size:38px;
color:#0f766e;
margin-bottom:15px;

}



.events-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}



.event-card{

background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;

}



.event-card:hover{

transform:translateY(-8px);

}



.event-date{

display:inline-block;
background:#0f766e;
color:#fff;
padding:8px 18px;
border-radius:20px;
margin-bottom:20px;
font-weight:bold;

}



.event-card h2{

color:#16a34a;
font-size:22px;
margin-bottom:15px;

}



.event-card p{

color:#555;
margin-bottom:20px;

}



.event-card a{

text-decoration:none;
color:#0f766e;
font-weight:600;

}


.event-card a:hover{

color:#16a34a;

}

/* ================= PROJECTS PAGE ================= */


.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

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

.project-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#ecfdf5;
    color:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}
.events-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.event-card{
    position:relative;
}

.event-date{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    background:#0f766e;
    color:#fff;
    font-size:14px;
    margin-bottom:18px;
}
/* ================= MISSION PAGE ================= */

.mission-section{
    padding:70px 0;
}

.page-title{
    text-align:center;
    margin-bottom:50px;
}

.page-title h1{
    font-size:38px;
    color:#0f766e;
    margin-bottom:15px;
}

.page-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.mission-card{
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin-bottom:40px;
}

.mission-card h2{
    color:#16a34a;
    margin-bottom:20px;
}

.mission-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.mission-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.mission-item:hover{
    transform:translateY(-6px);
}

.icon{
    font-size:36px;
}

.mission-item h3{
    color:#0f766e;
    margin-bottom:8px;
}

.mission-item p{
    color:#555;
    line-height:1.7;
}

@media (max-width:768px){

    .page-title h1{
        font-size:32px;
    }

    .contact-grid,
    .volunteer-grid,
    .mission-list,
    .projects-grid,
    .gallery-grid,
    .events-grid{

        grid-template-columns:1fr;

    }

    .card,
    .contact-info,
    .contact-form,
    .volunteer-info,
    .volunteer-form,
    .project-card,
    .gallery-item,
    .event-card,
    .mission-card,
    .mission-item{

        padding:25px;

    }

}


/* ===================================================
   FOOTER
=================================================== */

footer{
    background:#111827;
    color:#d1d5db;
    padding:60px 0 24px;
    margin-top:60px;
}

footer .wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-bottom:30px;
}

.footer-grid h3{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
}

.footer-grid h4{
    color:#fff;
    font-size:17px;
    margin-bottom:16px;
    font-weight:600;
}

.footer-grid p{
    color:#9ca3af;
    line-height:1.7;
    margin-bottom:8px;
}

.footer-grid ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid ul li a{
    color:#d1d5db;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-grid ul li a:hover{
    color:#16a34a;
}

footer hr{
    border:none;
    border-top:1px solid #374151;
    margin:20px 0;
}

.footer-bottom{
    text-align:center;
    color:#9ca3af;
    font-size:14px;
}

@media (max-width:600px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

}



