/* GLOBAL */

body {
  font-family: Arial, sans-serif;
  margin: 0;
}
.donate-btn {
    background: #0c6b58;
    color: black !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 20px;
}

    .donate-btn:hover {
        background: #ffcc33;
    }
.nav {
    display: flex;
    align-items: center;
}
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .hero img {
        width: 100%;
        height: auto;
        display: block;
    }

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.donate-btn {
    margin-left: auto;
}
/* IMPACT SECTION */
.impact-section {
    background: linear-gradient(135deg, #002d1a, #0c6b58);
    color: white;
    padding: 60px 20px;
}

.impact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE */
.impact-left {
    flex: 1;
}

    .impact-left h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .impact-left p {
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .impact-left h3 {
        margin-top: 20px;
    }

/* RIGHT SIDE */
.impact-right {
    flex: 1;
}

/* STATS */
.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.stat .label {
    font-size: 14px;
    color: #ddd;
}

.stat h2 {
    font-size: 40px;
    margin: 5px 0;
}

/* CHART */
.chart img {
    width: 100%;
    border-radius: 6px;
    background: white;
    padding: 10px;
}

/* MOBILE */
@media(max-width: 768px) {
    .impact-container {
        flex-direction: column;
    }

    .impact-left h1 {
        font-size: 36px;
    }

    .stats {
        justify-content: space-between;
    }
}

/* HEADER */
.topbar {
    background: #2F3A51;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}
.nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

    .nav a:hover {
        color: #f4b400;
    }

    .nav a.active {
        border-bottom: 3px solid #f4b400;
        font-weight: bold;
    }
.nav {
    padding: 10px 30px;
}
/* MOBILE NAV */
@media(max-width:768px) {

    .topbar {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .nav a {
            margin: 10px 0;
            display: block;
        }
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

@media(max-width:768px) {
    .menu-btn {
        display: block;
    }

    .nav {
        display: none;
    }

        .nav.show {
            display: flex;
            flex-direction: column;
        }
}
.menu-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

    .menu-link.active {
        border-bottom: 3px solid #f4b400;
        font-weight: bold;
    }

    .menu-link:hover {
        color: yellow !important;
    }
.topbar img {
  height: 50px;
  margin-right: 15px;
}

.topbar h1 {
  font-size: 20px;
  margin: 0;
}

/* NAV */
.nav {
    background: #000035;
    padding: 10px 30px;
}

.nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
}

/* CONTENT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

/* ROW */
.row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.row img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 30px auto;
  position: relative;
}

.hero img {
  width: 100%;
  border-radius: 5px;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:800px){
  .row {
    flex-direction: column;
  }
}
/* Hide button on desktop */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}


.layout {
    display: flex;
    gap: 20px;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #f0f0f0;
    padding: 15px;
}

    .sidebar button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border: none;
        background: white;
        cursor: pointer;
        text-align: left;
    }

        .sidebar button.active {
            background: #0c6b58;
            color: white;
        }

/* CONTENT */
.content {
    flex: 1;
}

/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.card {
    width: 300px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}
/* MOBILE */
@media(max-width:768px) {

    .topbar {
        justify-content: space-between;
    }

    .menu-btn {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: #0c6b58;
        padding: 10px;
    }

        .nav.show {
            display: flex;
        }

        .nav a {
            margin: 10px 0;
            display: block;
        }
}