

        /* --- Navigation Bar --- */
        .top-nav {
            background-color: black;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .container-nav {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .nav-inner {
            display: flex;
            height: 4rem;
            justify-content: space-between;
            align-items: center;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            color: #F1F1F1;
            text-align: left;
            letter-spacing: 5px;
            font-weight: 400; 
            opacity: 1;
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-desktop-links {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-desktop-links {
                display: flex;
                flex: 1;
                justify-content: center;
                gap: 2rem;
            }
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 150ms ease-in-out;
            text-decoration: none;
            color: rgb(209, 213, 219);
            background: none;
            border: none;
            cursor: pointer;
        }
        .nav-link:hover, .nav-link-active { color: white; }

        .chevron-icon { 
            margin-left: 0.4rem; 
            height: 1rem; 
            width: 1rem; 
            fill: currentColor;
            transition: transform 200ms ease; 
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* This is the "magic" line that forces it to the right */
}



        .donate-btn {
            padding: 0.4rem 1rem;
            background-color: transparent; 
            color: #FCBA04; 
            border: 1.5px solid #FCBA04;
            font-weight: 700; 
            font-size: 0.8rem; 
            border-radius: 0.125rem; 
            transition: all 200ms ease-in-out;
            display: none;             
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .donate-btn:hover { 
            background-color: #FCBA04; 
            color: #000000;
        }

        @media (min-width: 768px) {
            .donate-btn {
                display: flex; /* Makes it visible again */
                align-items: center;
                justify-content: center;
    }}

        /* --- Dropdowns --- */
        .dropdown-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .dropdown-panel {
            position: absolute;
            top: 100%;
            margin-top: 0.5rem;
            z-index: 100;
            width: 14rem;
            background-color: #0b1426; 
            border: 1px solid #1a273d;
            border-top: 2px solid #FCBA04; 
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
            display: none;
        }
        .dropdown-panel.show { display: block; }
        .dropdown-panel-right { right: 0; }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            color: #d1d5db;
            text-decoration: none;
            transition: all 150ms ease-in-out;
        }
        .dropdown-link:hover { 
            background-color: #111d33; 
            color: #FCBA04; 
            padding-left: 1.5rem; 
        }

        /* --- Mobile Menu --- */
        #mobile-menu-button {
            padding: 0.5rem;
            color: #9ca3af;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) { #mobile-menu-button { display: none; } }

        #mobile-menu {
            display: none;
            background-color: #0b1426; 
            border-top: 2px solid #FCBA04;
            position: absolute;
            width: 100%;
            left: 0;
            z-index: 45;
        }
        #mobile-menu.active { display: block; }

        .mobile-menu-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            max-height: 85vh;
            overflow-y: auto;
        }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            font-size: 1.1rem;
            color: #ffffff;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
        }
        .mobile-menu-link.active { color: #FCBA04; }

        .mobile-menu-link:hover { color: #FCBA04; }


        .mobile-submenu {
            background-color: rgba(0, 0, 0, 0.15);
            display: none;
            border-left: 3px solid #FCBA04;
            margin: 0.5rem 0 0.5rem 1rem;
        }
        .mobile-submenu.active { display: block; }

        .mobile-submenu-link {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
            color: #9ca3af;
            text-decoration: none;
            font-family: 'Lato', sans-serif;
        }

        .mobile-submenu-link:hover { 
            background-color: #111d33; 
            color: #FCBA04; 
            padding-left: 1.5rem; 
        }

        /* --- Jump to Top Button --- */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #000000;
            color: #FCBA04;
            border: 2px solid #FCBA04;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 300ms ease;
        }

        #back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        #back-to-top:hover {
            background-color: #FCBA04;
            color: #000000;
            transform: translateY(-5px);
        }

        /* --- Footer --- */
        .site-footer {
            background-color: black;
            color: white;
            font-family: 'Lato', sans-serif;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 4rem 2.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(6, 1fr); } }

        .footer-logo-column { text-align: center; }
        @media (min-width: 768px) { .footer-logo-column { grid-column: span 2; text-align: left; } }

        .footer-logo { width: 12rem; margin-bottom: 1rem; }
        .footer-logo-description { font-size: 0.875rem; color: #9ca3af; line-height: 1.5; }
        .footer-links-title { font-family: 'Oswald', sans-serif; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; color: #d1d5db; margin-bottom: 1.25rem; }
        .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-links-list a { font-size: 0.85rem; color: #d1d5db; text-decoration: none; transition: color 150ms ease-in-out; }
        .footer-links-list a:hover { color: white; }
        .footer-bottom { margin-top: 4rem; border-top: 1px solid #1f2937; padding-top: 2rem; text-align: center; color: #6b7280; font-size: 0.875rem; }

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
            .footer-logo-column { grid-column: span 2; }

        }
 
