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

body {
    font-family: Arial, sans-serif;
    background-color: #fdfdfd;
    color: #0A3A6B;
    line-height: 1.6;
}

/* NAVBAR */
.brand-logo {
    height: 215px;
    width: auto;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    background: transparent;
    position: relative;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* DESKTOP NAVIGATION */
.nav-links {
    display: flex;
    margin-left: auto;
    align-items: center;
    background-color: #0f61d1;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 1001;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffb347;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.07);
}

.donate-btn {
    background-color: #ffb347;
    padding: 10px 18px;
    border-radius: 6px;
    color: white !important;
    font-weight: bold;
}
/* HAMBURGER BUTTON (base styles) */
.hamburger {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0A3A6B;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* MOBILE NAVIGATION */
@media (max-width: 800px) {

    /* Mobile menu hidden state */
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: #0f61d1;
        flex-direction: column;
        text-align: center;

        /* IMPORTANT: do NOT use display:none */
        display: flex;

        height: 0;
        padding: 0;
        overflow: hidden;

        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;

        z-index: 1001;
        pointer-events: none;
    }

    /* Mobile menu open state */
    .nav-links.show {
        height: auto;
        transform: scaleY(1);
        opacity: 1;
        border-bottom: 2px solid #dbe7f3;
        pointer-events: auto;
    }

    .nav-links a {
        margin: 16px 0;
        padding: 12px 0;
        font-size: 18px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO FADE-IN ANIMATION */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO */
.hero {
    background-color: #4788ea;
    padding: 20px 40px 60px 40px;
    color: #feecb9;
    text-align: left;
    animation: heroFade 0.9s ease-out forwards;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
}

.hero button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffcc33;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #0A3A6B;
    transition: 0.2s ease;
}

.hero button:hover {
    background-color: #e6b82e;
    transform: translateY(-2px);
}
/* PAGE SECTION */
.page-section {
    padding: 60px 40px;
    max-width: 1000px;
    margin: auto;
}

.page-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0A3A6B;
}

.page-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #0A3A6B;
}

/* FOOTER */
footer {
    background-color: #f0f6fb;
    padding: 40px;
    border-top: 2px solid #dbe7f3;
    text-align: center;
}

footer .footer-brand {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    color: #0A3A6B;
}

footer p {
    margin: 5px 0;
    color: #0A3A6B;
    font-size: 14px;
}

/* DONATE PAGE BUTTON */
.donate-cta {
    text-align: center;
    margin-top: 30px;
}

.donate-now-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: #e63946;
    color: white !important;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s ease;
}

.donate-now-btn:hover {
    background-color: #c92f3d;
    transform: translateY(-2px);
}

/* CONTACT PAGE */
.contact-container {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #f0f6fb;
    border-radius: 12px;
    border: 2px solid #dbe7f3;
}

.contact-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0A3A6B;
}

.contact-container p {
    color: #0A3A6B;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dbe7f3;
    border-radius: 8px;
    font-size: 16px;
    background: #ffffff;
    color: #0A3A6B;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0f61d1;
    outline: none;
    box-shadow: 0 0 4px rgba(15, 97, 209, 0.3);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-submit {
    padding: 14px;
    background-color: #ffb347;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-submit.success {
    background-color: #2ecc71 !important;
    transform: scale(0.95);
    pointer-events: none;
    transition: 0.3s ease;
}

.contact-submit.success::after {
    content: "  ✓";
    font-weight: bold;
}

.contact-submit:hover {
    background-color: #e89d2f;
    transform: translateY(-2px);
}

.contact-submit.success:hover {
    transform: scale(0.95);
    background-color: #2ecc71 !important;
}

.honeypot {
    display: none !important;
}