* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* color: rgb(10, 10, 10); */
    /* font-family: 'Proxima Nova', 'Montserrat', 'Avenir Next', sans-serif; */

}

html,
body {
    /* width: fit-content; */
    max-width: fit-content;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

nav {
    /* position: relative; */
    position: fixed;
    height: auto;
    background-color: #f9a35a;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: top 0.4s ease-in-out;
    padding: 12px 30px 12px 16px;
    box-shadow: 3px 3px 7px 4px rgba(27, 27, 27, 0.616);
    color: rgb(85, 85, 85);
    z-index: 100;
}

nav img {
    /* max-height: 45px; */
    padding: 0px 15px 0px 0px;
    width: 7%;



}

.nav_button {
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* font-weight: bold; */
    font-size: 18px;
    /* color: rgb(10, 10, 10); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    color: rgb(85, 85, 85);
}

.nav_button button {
    padding: 12px;
    width: 105%;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .5);
    text-align: center;
    font-size: 16px;
    color: white;
    background-color: #0581c0;
    border: 2px solid #0581c0;
    border-radius: 10px;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.nav_button button:hover {
    cursor: pointer;
    background-color: #f3e034;
    border: 2px solid #f3e034;
}

.nav_button a {
    text-decoration: none;
    color: white;
}

.nav_button a:hover {
    color: rgb(160, 144, 144);
}

.nav-link.active {
    color: #0581c0;
    /* orange highlight */
    font-weight: bold;
}


li {
    list-style: none;
    padding: 0px 15px;
}



/* mobile nav styling */
/* Desktop Nav – assumed separate, not shown on mobile */
/* #navbar {
    display: block;
} */
/* Hamburger icon (Mobile Nav Toggle) */
.nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    z-index: 1002;
    cursor: pointer;
    color: #000000;
    background-color: #0dffa6;
    padding: 10px;
    border-radius: 10px;
}

/* Overlay covers the page when mobile nav is open */
.nav-overlay {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100vw;
    height: 100vh; */
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: -1;
    transition: opacity 0.3s ease;
}

.nav-overlay.show {
    display: block;
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ccffe1;
    z-index: 1001;
    padding: 2rem 1rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
}

.mobile-nav.open {
    right: 0;
}

/* Close Button in mobile nav */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    /* hidden by default; shown when nav is open */
    z-index: 1002;
}

/* Logo inside mobile nav */
.mobile-nav .logo {
    width: 180px;
    margin: 20px auto;
    display: block;
}

/* Mobile nav list */
.mobile-nav ul {
    list-style: none;
    text-align: center;
    margin: 2rem 0;
}

.mobile-nav ul li {
    margin: 1rem 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #333;
}

/* Donate button styling inside mobile nav */
.donate-btn {
    display: inline-block;
    background: #0581c0;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Mobile Nav elements will only show below 768px */
@media screen and (max-width: 849px) {
    #navbar {
        display: none;
    }

    .nav-toggle,
    .mobile-nav,
    .nav-overlay {
        display: block;
    }

}




/* footer styling */
.footer {
    background: #f9a35a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    width: 100vw;
    box-sizing: border-box;
    bottom: 0;
    /* position:relative; */

}

.footer-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 10%;
    background-color: #f9a35a;
    text-align: center;
    flex-wrap: wrap;
}

.footer-message {
    flex: 1;
    max-width: 250px;
    padding: 10px;
}

.footer-message img {
    width: 40px;
    height: auto;
    margin-bottom: 10px;

    mix-blend-mode: exclusion;
}

.footer-message p {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}


.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 10%;
    flex-direction: row;
}

.footer-left,
.footer-right {
    min-width: 250px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
}

.footer-left h3 {
    margin-bottom: 10px;
}

.footer-left p {
    margin: 6px 0;
}

.footer-logo {
    width: 170px;
    margin: 20px 0;
}

.social-icons {
    text-align: center;
    padding-bottom: 20px;
}

.social-icons i {
    font-size: 25px;
    margin: 0 20px;
    color: #939393;
    cursor: pointer;
    transition: color 0.5s ease;
}

.social-icons i:hover {
    color: #0077b5;
}

.social-icons a {
    font-size: 25px;
}

.footer-right h4 {
    margin-bottom: 15px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin: 8px 0;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    background-color: #fb8219;
    color: #fff;
    padding: 15px 10px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */

@media screen and (max-width: 849px) {
    nav {
        /* position: relative; */
        position: fixed;
        height: auto;
        background-color: white;
        width: 100vw;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: center;
        transition: top 0.4s ease-in-out;
        padding: 12px 16px 12px 16px;
        box-shadow: 3px 3px 7px 4px rgba(27, 27, 27, 0.616);
        color: rgb(85, 85, 85);
        z-index: 100;
    }

    .nav_button {
        font-family: Georgia, 'Times New Roman', Times, serif;
        /* font-weight: bold; */
        font-size: 18px;
        /* color: rgb(10, 10, 10); */
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: space-between;
        color: rgb(85, 85, 85);
    }

    .nav_button li {
        list-style: none;
        padding: 0px 15px;
        margin: 10px 0;
        font-size: medium;
    }

    nav img {
        /* max-height: 45px; */
        padding: 0px;
        width: 150px;
    }

}


@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        padding: 30px 5%;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        padding: 20px 5%;
    }

    .social-icons {
        text-align: center;
        font-size: 0px;
    }
}