/* Reset + root */

:root {
    --black: #0b0b0b;
    --brown: #6b3f2f;
    /* warm brown accent */
    --green: #1a8f3a;
    --white: #ffffff;
    --muted: #ebde31;
    --container: 1200px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
    padding: 0;
    background: #faf9f7;
    color: var(--black);
    -webkit-font-smoothing: antialiased
}


/* Layout helpers */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 70px 0
}

.section.alt {
    background: #fffdf9
}


/* Header */

.site-header {
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 4px solid var(--brown)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.logo-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f1ce31
}

.org-name {
    font-size: 18px;
    margin: 0;
    color: var(--white)
}

.tag {
    font-size: 12px;
    color: #bfbfbf;
    margin: 0
}


/* Nav */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    align-items: center
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all .18s
}

.main-nav a:hover {
    background: rgb(247, 203, 9);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    padding: 8px 10px
}


/* Hero */

.hero {
    background: linear-gradient(180deg, rgba(11, 11, 11, .6), rgba(11, 11, 11, .35)), url('images/hero.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: center
}

.hero-copy h2 {
    font-size: 36px;
    margin: 0 0 12px;
    color: rgb(247, 210, 4)
}

.hero-copy p {
    font-size: 16px;
    margin: 0 0 18px;
    color: rgba(44, 1, 1, 0.9)
}

.hero-media img {
    width: 100%;
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, .06)
}


/* Buttons */

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border: 2px solid rgba(0, 0, 0, .08)
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .15)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black)
}

.small-btn {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--brown);
    color: var(--white);
    text-decoration: none
}


/* About */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center
}

.bullets {
    margin-top: 12px;
    color: var(--muted)
}

.small-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px
}


/* Cards Grid */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(20, 20, 20, .06);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px
}

.card h3 {
    margin: 0;
    font-size: 18px;
    color: var(--brown)
}

.card p {
    margin: 0;
    color: #444
}

.card-actions {
    margin-top: auto
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(10, 10, 10, .09)
}


/* Activities grid */

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.action {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center
}

.action img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px
}

.action h4 {
    margin: 0;
    color: var(--brown)
}


/* Report layout */

.report-wrap {
    display: flex;
    gap: 30px;
    align-items: center
}

.report-left {
    flex: 1
}

.report-right {
    width: 360px
}

.report-right img {
    width: 100%;
    border-radius: 10px;
    display: block
}

.report-summary {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-top: 12px
}


/* Blog */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.blog-item {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05)
}

.blog-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px
}


/* Newsletter */

.newsletter-wrap {
    text-align: center
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px
}

.newsletter-form input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 220px
}


/* Donate grid */

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start
}

.donate-left {
    background: #fff;
    border-radius: 12px;
    padding: 18px
}

.donate-form {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.donate-form label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #444
}

.donate-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px
}


/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px
}

.contact-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px
}


/* Footer */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 22px 0;
    margin-top: 36px;
    border-top: 6px solid var(--brown)
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center
}


/* Live chat */

.live-chat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999
}

#chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.chat-box {
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 10px;
    display: none
}

.chat-header {
    background: var(--brown);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.chat-body {
    padding: 12px;
    flex: 1;
    overflow: auto;
    background: #faf8f5
}

.chat-form {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #eee
}

.chat-form input {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd
}


/* Muted text */

.muted {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px
}


/* Utilities */

.link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600
}

.card .link {
    color: var(--brown)
}


/* Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.container>* {
    animation: fadeUp .6s ease both
}


/* Responsive */

@media (max-width:1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .hero-grid {
        grid-template-columns: 1fr 360px
    }
    .about-grid {
        grid-template-columns: 1fr
    }
    .report-right {
        width: 300px
    }
}

@media (max-width:760px) {
    .main-nav ul {
        display: none
    }
    .nav-toggle {
        display: inline-block
    }
    .hero-grid {
        grid-template-columns: 1fr
    }
    .cards-grid {
        grid-template-columns: 1fr
    }
    .actions-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .blog-grid {
        grid-template-columns: 1fr
    }
    .contact-grid {
        grid-template-columns: 1fr
    }
    .report-wrap {
        flex-direction: column
    }
    .donate-grid {
        grid-template-columns: 1fr
    }
    .footer-grid {
        flex-direction: column;
        gap: 12px
    }
}

@media (max-width:420px) {
    .hero-copy h2 {
        font-size: 22px
    }
    .logo-img {
        display: none
    }
}

.abubaida {
    width: 400px;
    height: 400px;
    border-radius: 5px;
}

span {
    font-size: 20px;
    font-weight: bold;
    color: #0b0b0b;
}