:root {
    /* Light Mode Defaults */
    --plag-bg: #ffffff;
    --plag-surface: #f3f4f6;
    --plag-text: #111827;
    --plag-gold: #d4af37;
    --plag-green-overlay: rgba(5, 44, 30, 0.95);
}

.dark {
    /* Dark Mode Overrides */
    --plag-bg: #000000;
    --plag-surface: #111111;
    --plag-text: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: relative;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Button Styling */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

    .mobile-menu-btn .bar {
        width: 25px;
        height: 3px;
        background-color: var(--plag-gold);
        transition: 0.3s;
    }
