/* Custom Theme Classes */
.Native-color-secondary-bg {
    background-color: #4C763B;
}

.Native-color-yellow-text {
    color: #FFFD8F;
}

.Native-color-yellow-bg {
    background-color: #FFFD8F;
}

.Native-white-bg {
    background-color: #FCF9EA;
}

/* Base Reset & Typography */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    padding: 0 15px;
    height: 70px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.active-nav {
    border-bottom: 4px solid #FFFD8F;
    background-color: rgba(255, 253, 143, 0.05);
}

/* Mobile Responsiveness */
.menu-toggle,
.hamburger {
    display: none;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        border-radius: 2px;
    }

    .nav-links {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #4C763B;
        height: auto;
    }

    .nav-link {
        height: 60px;
        width: 100%;
        border-bottom: none;
        border-left: 4px solid transparent;
        padding-left: 30px;
    }

    .active-nav {
        border-bottom: none;
        border-left: 4px solid #FFFD8F;
    }

    /* Show menu when checkbox is checked */
    .menu-toggle:checked~.nav-links {
        display: flex;
    }
}

.logoNav {
    height: 40px;
}