:root {
    --brand-forest: #0b3d2e;
    --brand-emerald: #1b7f5a;
    --brand-sun: #f2b93b;
    --brand-cream: #f7f4ee;
    --brand-ink: #1b1f24;
    --brand-mist: #e8ede7;
    --shadow-soft: 0 18px 45px rgba(9, 20, 16, 0.12);
    --shadow-card: 0 12px 30px rgba(15, 28, 20, 0.12);
}

html, body {
    background: linear-gradient(180deg, #fbfaf6 0%, #f1f5f2 45%, #ffffff 100%);
    color: var(--brand-ink);
    font-family: "Lato", "Trebuchet MS", sans-serif;
    line-height: 1.7;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(27, 127, 90, 0.12), transparent 55%),
        radial-gradient(circle at 15% 35%, rgba(242, 185, 59, 0.12), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", "Trebuchet MS", sans-serif;
    color: var(--brand-forest);
    letter-spacing: 0.4px;
}

h1 {
    font-size: clamp(2.2rem, 2.8vw, 3.4rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}

p {
    color: #2c3339;
}

.main-area {
    background: transparent;
}

.header-top {
    background: var(--brand-forest);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top a {
    color: #fff;
}

.main-menu-area {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.main-menu nav ul li a {
    color: var(--brand-forest);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-menu nav ul li a:hover,
.main-menu nav ul li.active a {
    color: var(--brand-emerald);
}

.donate-button a {
    background: linear-gradient(120deg, var(--brand-emerald), #29a174);
    color: #fff;
    border-radius: 999px;
    padding: 12px 26px;
    box-shadow: var(--shadow-card);
    border: none;
}

.donate-button a:hover {
    background: linear-gradient(120deg, #167552, var(--brand-forest));
    color: #fff;
}

.slider-area,
.page-title-area {
    background: linear-gradient(135deg, rgba(27, 127, 90, 0.12), rgba(242, 185, 59, 0.15));
    border-bottom: 1px solid rgba(15, 28, 20, 0.08);
}

.page-title-area {
    padding: 90px 0 70px;
}

.page-title h1 {
    color: var(--brand-forest);
}

.breadcrumbs-area .breadcrumbs li,
.breadcrumbs-area .breadcrumbs li a {
    color: var(--brand-ink);
    font-weight: 600;
}

.section-title h2,
.section-title-style-two h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-title h2::after,
.section-title-style-two h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-emerald), var(--brand-sun));
}

.section-title.text-center > p,
.section-title-style-two.text-center > p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #3a424a;
}

.about-us-area,
.our-causes-area,
.our-blog-area,
.our-volunteer-area,
.gallery-area,
.people-area {
    padding: 90px 0;
}

.single-blog,
.blog-details,
.single-causes,
.single-volunteer,
.single-events,
.donation-form,
.about-content,
.about-image {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 28, 20, 0.08);
}

.single-blog,
.blog-details {
    padding: 28px;
}

.blog > [class*="col-"] {
    display: flex;
}

.blog .single-blog {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog .blog-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog .blog-text > a {
    margin-top: auto;
    align-self: flex-end;
}

.our-volunteers > [class*="col-"] {
    display: flex;
}

.our-volunteers .single-volunteer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.our-volunteers .volunteer-title {
    margin-top: auto;
}

.volunteer-title.text-center {
    padding: 14px 14px 20px;
}

.volunteer-title.text-center > h5 {
    color: #1f2d23;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}

.volunteer-title.text-center > p {
    color: #4f6157;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 8px;
}

.blog-details-title h3 {
    color: var(--brand-forest);
}

.blog-text ul li {
    margin-bottom: 10px;
}

.blog-text ul {
    padding-left: 18px;
}

.role-details h3 {
    font-size: 22px;
    color: var(--brand-forest);
}

.btn-md,
.btn-lg,
.btn-sm {
    background: var(--brand-forest);
    color: #fff;
    border-radius: 999px;
    border: none;
    padding: 10px 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.blog-text > a.btn-md,
.blog-text > a.btn-lg,
.blog-text > a.btn-sm {
    color: #fff;
    border-bottom: none;
}

.btn-md:hover,
.btn-lg:hover,
.btn-sm:hover {
    background: var(--brand-emerald);
    color: #fff;
}

.footer-top {
    background: var(--brand-forest);
    color: #f4f7f2;
}

.footer-widget-title h3 {
    color: #f4f7f2;
}

.footer-widget a,
.footer-widget p {
    color: #dfe8e1;
}

.footer-widget a:hover {
    color: #fff;
}

.back-home a {
    background: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    box-shadow: var(--shadow-card);
    color: var(--brand-forest);
}

.top-social nav ul li a,
.call-to-action nav ul li a {
    font-weight: 600;
}

@media (max-width: 991px) {
    .main-menu-area {
        position: relative;
    }

    .donate-button {
        display: none;
    }

    .page-title-area {
        padding: 70px 0 50px;
    }
}

@media (max-width: 575px) {
    .single-blog,
    .blog-details {
        padding: 20px;
    }

    .section-title h2::after,
    .section-title-style-two h2::after {
        width: 50px;
    }
}
