* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.green {
    color: #004d00;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: "Poppins", sans-serif;
}

section {
    scroll-margin-top: 100px;
}

.bg-landing {
    width: 100%;
    height: 60vh;
    background-image: url(images/hero.avif);
    background-color: rgb(195, 204, 195);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 30px;
}

.dark-scarf {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-wrapper {
    color: white;
    text-align: center;
    border-radius: 5px;
}

.title-wrapper .title {
    font-size: 70px;
    text-transform: uppercase;
    color: #daa520;
}

.title-wrapper .sub-title {
    font-size: 35px;
    font-weight: normal;
    font-family: monospace;
    text-transform: uppercase;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    color: white;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    background: #004d00;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-learn:hover {
    background: #004d00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-learn:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    transition: transform 0.3s ease;
}

/* ========================
   NAV
======================== */
.mobile-nav {
    display: none;
}

nav {
    width: 90%;
    max-width: 1000px;
    padding: 5px 15px;
    margin: auto;
    border-radius: 999px;
    background: linear-gradient(to right, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    width: 100px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style-type: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: .3s;
    padding: 6px 10px;
}

.nav-links a:hover {
    background-color: #004d00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 999px;
}

/* ========================
   SIDE DRAWER — always present, not inside media query
======================== */
.side-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(160deg, #001a00, #004d00);
    z-index: 2000;
    padding: 30px 20px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
}

.side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn {
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-links a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.drawer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #daa520;
    padding-left: 22px;
}

/* Overlay — always present */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
}

/* ========================
   SECTIONS
======================== */
.hero {
    width: 70%;
    margin: auto;
    margin-top: 60px;
}

.hero img {
    width: 100%;
}

.leadership-section {
    width: 100%;
    background: linear-gradient(135deg, #001a00 0%, #004d00 60%, #006600 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(218, 165, 32, 0.06);
    border-radius: 50%;
}

.leadership-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.leadership-section h2 {
    color: #daa520;
    margin: 0%;
}

.leadership-section p {
    color: #ffffff;
}

.leadership-section div {
    margin-top: 25px;
    color: #ffffff;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

/* .founder-section {
    width: 100%;
    padding: 40px 20px;
    margin-top: 30px;
}
.founder-section p{
    margin-bottom: 15px;
} */

.impact-grid {
    padding: 80px 0;
    /* background-color: #daa520; */
}

.section-title {
    text-align: center;
    font-size: 2.0rem;
    color: #004d00;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #daa520;
    margin-bottom: 3rem;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-card {
    grid-column: span 6;
    border: 1px solid rgba(0, 77, 0, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 0, 0.1);
    border-color: #004d00;
}

.impact-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    font-size: 1.5rem;
    color: #004d00;
    margin-bottom: 0.5rem;
}

.impact-card .tagline {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #daa520;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.impact-card p {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
}

.section-2-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 0 15.33%;
    align-items: stretch;
}

.section-2-grid div {
    grid-column: span 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden;
}

.section-2-grid div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-2-grid span {
    color: #ffffff;
    grid-column: span 7;
    background: linear-gradient(-135deg, #001a00 0%, #004d00 30%, #006600 100%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    align-self: stretch;
}

.mv-grid {

    padding: 0 15.33%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    text-align: center;
}

.mission-card {
    grid-column: span 6;
    background-color: #ffffff;
    /* Clean white */
    border-left: 5px solid #004d00;
    /* Deep green accent */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.vision-card {
    grid-column: span 6;
    background-color: #ffffff;
    border-left: 5px solid #daa520;
    /* Gold accent */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.core-values-container {
    padding: 20px 15.33%;
    text-align: center;

}

.core-values-container h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    position: relative;
}

.core-values-grid div {
    grid-column: span 1;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 77, 0, 0.5);
    /* Very faint green border */
    padding: 3rem 1.5rem;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #004d00;
    transition: all 0.3s ease;

}

.core-values-grid div:hover {
    background: #004d00;
    color: #daa520;
    transform: translateY(-5px);
}

.drbode-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 10px 15.33%;
}

.drbode-grid img {
    grid-column: span 3;
}

.drbode-grid img:first-child {
    border-radius: 10px 0 0 10px;
}

.drbode-grid img:last-child {
    border-radius: 0 10px 10px 0;
}

.donate-section {
    width: 100%;
    background: linear-gradient(135deg, #001a00 0%, #004d00 60%, #006600 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background circle */
.donate-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(218, 165, 32, 0.06);
    border-radius: 50%;
}

.donate-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.donate-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.donate-badge {
    display: inline-block;
    background: rgba(218, 165, 32, 0.15);
    color: #daa520;
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.donate-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.donate-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.donate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    text-align: left;
}

.donate-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.donate-card h3 {
    color: #daa520;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donate-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.donate-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding-top: 2px;
}

.donate-value {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
}

.merch-section {
    text-align: center;
}

.merch {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 0 0;
}

.merch img {
    background-color: #fff;
    box-shadow: 0 7px 14px rgba(0, 0, 0, .2);
    border-radius: 10px;
}

.merch-section button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    background: #004d00;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.merch-section button:hover {
    transform: translateY(-5px);
}

.contact-section {
    width: 100%;
    padding: 40px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.contact-section h2 {
    margin: 0%;
}

.contact-section p {
    color: #daa520;
}

form {
    margin: 20px auto;
    max-width: 600px;
    min-width: 300px;
    background: linear-gradient(135deg, #001a00 0%, #004d00 60%, #006600 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: center;
}

form input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    /* Smooth transition for focus */
}

form input:focus {
    background: rgba(255, 255, 255, 0.1);
    /* Brighten slightly */
    border-color: #00ff00;
    /* Glow green border */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    /* Soft outer glow */
}

form input::placeholder,
form textarea::placeholder {
    color: white;
    font-family: "Poppins", sans-serif;
    ;
}

form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    /* Smooth transition for focus */
    resize: none;
    height: 200px;
}

form input[type="submit"] {
    font-family: 'poppins', sans-serif;
    cursor: pointer;
    width: 35%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    background: #daa52046;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    /* Smooth transition for focus */
}

form input[type="submit"]:hover {
    background-color: #daa520;
}

.footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 77, 0, 0.1);
    padding: 60px 15.33% 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 220px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #004d00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #004d00;
}

.footer-contact address {
    font-style: normal;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 77, 0, 0.2);
    color: #004d00;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: #004d00;
    color: white;
    border-color: #004d00;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 77, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.developer-credit a {
    color: #daa520;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
}

.projects {
    padding: 80px 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.projects-grid .text-box,
.projects-grid .img-wrapper {
    grid-column: span 6;
}

.projects-grid img {
    border-radius: 10px;
}

.projects h2 {
    font-size: 2.0rem;
    color: #004d00;
    text-align: center;
    margin-top: 1.5rem;
}

.projects-badge {
    display: table;
    background: rgba(218, 165, 32, 0.15);
    color: #daa520;
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1rem;

}

.projects ul {
    padding: 5px 0 0 2rem;
}

.gallery-top {
    padding: 0 8.33%;
    padding-top: 130px;

}

.gallery-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(12, 1fr);
    padding: 40px 8.33%;


}

.gallery-grid .card {
    grid-column: span 4;
}

.gallery-grid img {
    border-radius: 5px;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, .2);
}

.gallery-grid .card span {
    display: inline-block;
    text-align: center;
    padding-top: 10px;
}

.blog-section {
    padding: 130px 5.33%;
}

.blog-section h2 {
    margin-bottom: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 20px 0;
    gap: 15px;

}

.post-card {
    grid-column: span 4;
    padding: 10px;
    /* border: 1px solid rgba(0, 0, 0, .3); */
    border-bottom: 4px solid #006600;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    border-radius: 8px;
    margin-bottom: 10px;
}

.post-card img {
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
}

.post-subtitle {
    font-size: 13px;
}

.post-date {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 13px;
    color: #777;
    display: block;
}

.post-btn {
    padding: 10px 24px;
    margin: 10px 0;
    color: white;
    text-decoration: none;
    background: #004d00;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-btn:hover {
    transform: translateY(5px);
}

.post-preview {
    width: 100%;
    padding: 30px 15.33%;
    padding-top: 130px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    position: fixed;
    z-index: 999;
    inset: 0;
    overflow: scroll;
    display: none;
}

.post-preview.active {
    display: block;
}

.post-preview-close-btn {
    cursor: pointer;
    font-size: 14px;
    color: #888;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.post-preview-close-btn:hover {
    color: #333;
    border-color: #aaa;
    background: #f5f5f5;
}

/* ========================
   MEDIA QUERIES
======================== */
@media (max-width: 1024px) {
    .title-wrapper .title {
        font-size: 65px;
    }

    .section-2-grid {
        grid-template-columns: 1fr;
        padding: 0 15.33%;
    }

    .section-2-grid div,
    .section-2-grid span {
        grid-column: span 1;
    }

    .grid-wrapper {
        padding: 0 8.33%;
    }

    .impact-card {
        grid-column: span 12;
    }

    .core-values-container {
        padding: 20px 15.33%;
    }

    .core-values-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .core-values-grid div {
        grid-column: span 6;
    }

    .footer {
        padding: 40px 20px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .projects-grid .text-box,
    .projects-grid .img-wrapper {
        grid-column: span 12;
    }

    .gallery-grid .card {
        grid-column: span 6;
    }

    .post-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .title-wrapper .title {
        font-size: 45px;
    }

    .title-wrapper .sub-title {
        font-size: 20px;
    }

    .bg-landing {
        height: 60vh;
    }

    nav {
        display: none;
    }

    .mobile-nav {
        width: 85%;
        max-width: 1000px;
        padding: 5px 15px;
        margin: auto;
        border-radius: 999px;
        background: linear-gradient(to right, rgba(0, 0, 0, .4));
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, .2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 30px;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .logo {
        width: 60px;
        display: block;
    }

    .hamburger svg {
        fill: white;
        display: block;
        cursor: pointer;
    }

    .impact-card {
        grid-column: span 12;
    }

    .section-2-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .section-2-grid div,
    .section-2-grid span {
        grid-column: span 1;
    }

    .mv-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .mission-card {
        grid-column: span 1;
    }

    .vision-card {
        grid-column: span 1;
    }

    .core-values-container {
        padding: 20px;
    }

    .drbode-grid {

        padding: 10px 20px;
    }

    .donate-grid img {
        grid-column: span 12;
    }

    .donate-grid div {
        grid-column: span 12;
        align-self: center;
    }

    .footer {
        padding: 40px 20px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .gallery-grid .card {
        grid-column: span 12;
    }

    .post-card {
        grid-column: span 12;
    }

    .post-preview {
        padding: 30px 20px;
        padding-top: 130px;
    }
}


@media (max-width: 480px) {
    .title-wrapper .title {
        font-size: 30px;
    }

    .grid-wrapper {
        padding: 0 2%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}