body {
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #76511a;
}

/* NAVBAR */
.navbar-nav .nav-link {
    color: #080300;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 5px;
}

.navbar-nav .nav-link:hover {
    color: #76511a;
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #76511a;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: #290b03;
    color: #fff;
    padding: 8px 20px;
}

.donate-btn:hover {
    background: #76511a;
    color: #fff;
}

/* HERO */

.hero {
    background: url('../images/hero.webp') center/cover no-repeat;
    position: relative;
    min-height:85vh;
    display: flex;
    align-items: center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(8, 3, 0, 0.69);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width:750px;   /* controls text width */
    margin:auto;
}

.hero-content h1{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    opacity:0.95;
    margin-bottom:50px; /* creates space before buttons */
}

.hero-buttons{
    margin-top:30px;
}

.learn-btn{
    border:2px solid #76511a;
    color:#fff;
    padding:12px 28px;
    font-weight:600;
    transition:all 0.3s ease;
}

.learn-btn:hover{
    background:#76511a;
    color:white;
    transform:translateY(-3px);
}

.contact-btn{
    background:#76511a;
    color:white;
    padding:12px 28px;
    font-weight:600;
    transition:all 0.3s ease;
}

.contact-btn:hover{
    background:#5b3c12;
    transform:translateY(-3px);
}

/* CORE VALUES */

.core-values {
    background: #080300;
    min-height: 150px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.core-values i {
    font-size: 40px;
    color: #d19030;
    margin-bottom: 10px;
    transition: 0.3s;
}

.core-values h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.core-values .col-md-3 {
    text-align: center;
}

.core-values .col-md-3:hover i {
    transform: scale(1.2);
    color: #f0b44c;
}

.core-values .col-md-3:hover h5 {
    color: #d19030;
}

/* ABOUT */

/* ABOUT SECTION */

.about {
    background: #e8e4d8;
    padding: 80px 0;
}

/* Section Titles */

.about-small-title {
    font-size: 30px;
    font-weight: 600;
    color: #080300;
    margin-bottom: 10px;
}

.about-main-title {
    font-size: 32px;
    font-weight: 700;
    max-width: 700px;
    margin: auto;
    line-height: 1.4;
    color: #080300;
}

/* Image */

.about-img {
    width: 100%;
    border-radius: 4px;
}

/* Text */

.about p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.about h5 {
    font-size:22px;
    font-weight:700;
    margin-top:22px;
    margin-bottom:8px;
    color:#080300;
}

.core-values-list{
    list-style:none;
    padding:0;
    margin-top:10px;
}

.core-values-list li{
    font-size:18px;
    margin-bottom:8px;
    position:relative;
    padding-left:20px;
}

.core-values-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    background:#76511a;
    border-radius:50%;
}

.about .col-lg-7{
padding-left:30px;
}

@media (max-width:768px){

    .about p{
        font-size:16px;
        line-height:1.7;
    }

    .about h5{
        font-size:20px;
    }

}

/* WHAT WE DO */

.what-we-do {
    padding: 90px 0;
    position: relative;
    color: #ffffff;
}

.what-we-do h4{
    font-size:20px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.what-we-do h3{
    font-size:38px;
    font-weight:700;
    margin-bottom:50px;
    line-height:1.3;
}

.what-we-do h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.what-we-do p{
    font-size:18px;
    line-height:1.7;
    opacity:0.95;
}

.what-we-do hr{
    margin:22px 0;
    border:0;
    height:1px;
    background:rgba(255,255,255,0.4);
}

/* Background Layer */
.what-we-do::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(118, 81, 26, 0.79), rgba(118, 81, 26, 0.79)),
        url('../images/pattern1.webp');

    background-repeat: repeat;
    background-size: 120px 120px;
    /* controls pattern size */
    background-position: center;

    z-index: 0;
}

.what-we-do .container {
    position: relative;
    z-index: 1;
}

/* IMPACT SECTION */

.impact-section {
    background: #fcf7f1;
    padding: 50px 0;
}

.impact-small-title {
    font-size: 16px;
    font-weight: 600;
    color: #76511a;
}

.impact-title {
    font-size: 34px;
    font-weight: 700;
    margin-top: 10px;
}

/* boxes */

.impact-box {
    padding: 20px;
    transition: 0.3s;
}

.impact-icon {
    font-size: 40px;
    color: #d19030;
    margin-bottom: 10px;
}

.impact-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #76511a;
}

.impact-box p {
    font-size: 16px;
    color: #333;
}

.impact-box:hover {
    transform: translateY(-6px);
}


/* GET INVOLVED */

.get-involved {
    background: #fcf7f1;
    padding: 90px 0;
}

.get-involved h4 {
    font-size: 30px;
    font-weight: 700;
    color: #080300;
}

.get-involved p {
    color: #333;
    font-size: 16px;
}

.involved-card {
    background: transparent;
    border: 2px solid #76511a;
    padding: 40px 30px;
    border-radius: 6px;
    transition: all 0.35s ease;
    height: 100%;
}

.involved-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #080300;
}

.involved-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.involved-card:hover {
    transform: translateY(-10px);
    background: #76511a;
    color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.involved-card:hover h5,
.involved-card:hover p {
    color: white;
}

/* FOOTER */

.footer{
    position:relative;
    padding:70px 0;
    color:white;
}

.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:
    linear-gradient(rgba(118,81,26,0.79), rgba(118,81,26,0.79)),
    url('../images/pattern1.webp');

    background-repeat:repeat;
    background-size:120px;
    background-position:center;

    z-index:0;
}

.footer .container{
    position:relative;
    z-index:1;
}


.footer-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:0.5px;
}

.footer-text{
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#290b03;
    padding-left:6px;
}

.contact-item{
    font-size:15px;
    margin-bottom:10px;
}

.social-icons{
    margin-top:20px;
    display:flex;
    gap:18px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    text-decoration: none;
    align-items:center;
    justify-content:center;

    background:#290b03;
    color:white;
    border-radius:50%;

    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    background:white;
    color:#290b03;
    transform:translateY(-3px);
}


/* COPYRIGHT */

.copyright {
    background: #76511a;
}


/**RESPONSIVE**/

@media (max-width:768px) {

    .hero{
        min-height:70vh;
        padding:30px 10px;
    }

    .hero-content{
        max-width:95%;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:16px;
        margin-bottom:35px;
    }

    .hero-buttons .btn{
        display:block;
        width:100%;
        margin-bottom:10px;
    }

    .core-values .col-6 {
        margin-bottom: 20px;
    }

    .about img {
        margin-bottom: 20px;
    }

}