@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
    --primary-color: #007a3f;
    --primary-light: #00a856;
    --white: #ffffff;
    --grey-dark: #2c3e50;
    --grey-light: #ecf0f1;
    --grey-medium: #95a5a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--grey-dark);
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    color: var(--white);
    text-decoration: none;
}

.brand-logo img {
    display: block;
    height: 80px;
    width: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-logo.visible img {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--grey-light);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 2rem;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.launch-note {
    padding: 64px 2rem;
    background-color: var(--white);
    text-align: center;
}

.launch-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.launch-note h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.launch-date {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.launch-note p {
    max-width: 640px;
    margin: 0 auto 0.75rem;
    color: var(--grey-dark);
}

.watermark-wrapper {
    background-color: #fff; /* or your page background */
}

.watermark {
    height: 200px;
    background-image: url('../img/badge.svg'); /* Adjust the path as necessary */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    filter: opacity(0.5);
    mix-blend-mode: multiply;
}

.about {
    padding: 80px 2rem;
    background-color: var(--grey-light);
}

.about h2, 
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.about p {
    font-size: 1.1rem;
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 1000px;
    color: var(--grey-dark);
}

.about a {
    color: var(--primary-color);
    font-weight: 600;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--grey-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.impact {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.impact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.impact-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.fundraising-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fund-card {
    background-color: var(--white);
    color: var(--grey-dark);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fund-label {
    color: #7d3daf;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.fund-card:last-child .fund-label {
    color: var(--primary-color);
}

.fund-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.fund-card p {
    margin-bottom: 1.25rem;
}

.progress {
    width: 100%;
    height: 14px;
    background-color: var(--grey-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.6s ease;
}

.fund-stats {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.btn-donate,
.btn-primary-solid {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-donate:hover,
.btn-primary-solid:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.new-tab-icon {
    font-size: 0.85em;
}

.contact {
    padding: 80px 2rem;
    text-align: center;
    background-color: var(--white);
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background-color: var(--grey-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    opacity: 0.85;
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section img,
.footer-section .social-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 0.4rem;
}

.footer-bottom a {
    color: var(--white);
}

@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
        max-height: 0;
        overflow: hidden;
        width: 100%;
    }

    .navbar-menu.active {
        max-height: 280px;
        padding: 1rem 2rem;
    }

    .hero {
        padding: 60px 1rem;
    }

    .hero-content img {
        max-width: 220px;
    }

    .hero-content h1,
    .about h2,
    .impact h2,
    .contact h2,
    .launch-note h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about,
    .impact,
    .contact,
    .launch-note {
        padding: 40px 1rem;
    }

    .features,
    .fundraising-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content img {
        max-width: 150px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
}
