@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap");


:root {
    --primary-color: #1a75ff;
    /* Bright blue */
    --primary-color-dark: #003380;
    /* Dark blue */
    --accent-color: #E03C31;
    /* Bright red */
    --accent-color-dark: #cc0000;
    /* Dark red */
    --salmon: #FA8072;
    /* Salmon */
    --salmon-dark: #E9967A;
    /* Dark Salmon */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    --gradient-salmon: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
    --gradient-mix: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark), var(--accent-color));
    --text-dark: #1e293b;
    --text-light: #64748b;
    --extra-light: #f0f5ff;
    /* Light blue tint */
    --white: #ffffff;
    --beige: #FAF9F6;
    --max-width: 1200px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: oswald;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section__header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}



.section__subheader {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: var(--text-light);
    letter-spacing: 2px;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;

}

/*html,
body {
    scroll-behavior: smooth;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}*/

body {
    padding-top: 90px;

    font-family: oswald;
    background-color: var(--beige);

    margin: 0;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

nav {
    width: 100%;
    background: rgb(10, 10, 37);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
}

/*nav.scrolled {
    background: #FAF9F6;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}*/

/*nav.scrolled .link a {
    color: var(--text-dark);
}
*/

.nav__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.donate-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-image: var(--gradient-accent);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 51, 51, 0.3);
    margin-left: 1.5rem;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4);
    filter: brightness(1.1);
}

/*nav.scrolled .donate-btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(255, 51, 51, 0.2);
}*/

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.nav__logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.link a {
    padding: 8px 12px;
    color: white;
    font-weight: 300;
    font-family: oswald;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.link a:hover::after {
    width: 100%;
}

/*nav.scrolled .link a {
    font-weight: 400;
}

nav.scrolled .link a::after {
    height: 1px;
    opacity: 0.8;
}
*/
.link a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donate-link {
    margin-left: 2rem;
}

.donate-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: #c27ba7;
    transform: translateY(-2px);
}

#logo {
    position: static;
    left: 15px;
    top: 12px;

    z-index: 1001;
    border-radius: 4px;
    padding: 3px;
    cursor: pointer;
}

#logo a {
    display: block;
    cursor: pointer;
}

#logo img {
    width: 45px;
    height: 45px;
    display: block;
    cursor: pointer;
}

#logo img:hover {
    cursor: pointer;

}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgb(10, 10, 37);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 1rem 1.5rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        overflow-y: auto;
    }

    .nav__links.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__links .link {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav__links .link a {
        display: block;
        padding: 1rem 0.25rem;
    }

    .nav__links .link .donate-btn {
        margin: 1rem 0;
        width: 100%;
    }
}