/* Navigation */
.erewards-navbar {
    background-color: #1a1410;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.erewards-navbar-brand {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform:uppercase;
}

.erewards-nav-link {
    color: #cccccc !important;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.erewards-nav-link:hover {
    color: #ffffff !important;
}

.erewards-get-started-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 13px;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.erewards-get-started-btn:hover {
    background-color: #ffffff;
    color: #1a1410;
}

/* Align toggle button */
.navbar-toggler {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

/* Mobile Menu Hidden by Default */
.erewards-nav-menu {
    transition: max-height 0.4s ease;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .erewards-nav-menu {
        width: 100%;
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
    }

    .erewards-nav-link {
        margin: 10px 0 !important;
    }

    .erewards-get-started-btn {
        margin: 15px 0;
        width: 80%;
    }

    /* When menu open */
    .erewards-nav-menu.show {
        max-height: 500px; /* Enough height to show all items */
    }
}
