/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background: #fff4e0; /* light saffron */
    color: #333;
}

/* NAVBAR */
.navbar {
    background: #ff9933; /* saffron */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
    border-radius: 100%;
}

.ngo h1 {
    color: #fff;
    font-size: 22px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 20px;
}

.hero-text h1 {
    color: #cc5500;
}

.hero-slider {
    flex: 1;
    position: relative;
}

.hero-slider img {
    width: 100%;
    display: none;
    border-radius: 10px;
}

.hero-slider img.active {
    display: block;
}

/* NGO CONTENT */
.ngo-content {
    padding: 40px;
}

.ngo-name-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #cc5500;
}

.content-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.reverse-row {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image img {
    width: 400px;
    border-radius: 10px;
}

/* WHAT WE DO */
#what-we-do {
    padding: 40px;
    background: #fff;
}

#what-we-do h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #cc5500;
}

.card-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff4e0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card img {
    width: 80px;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    background: #ff9933;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .content-row {
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #ff9933;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }
}
