.show-on-mobile {
    display: none;
}
.navbar {
    font-family: 'Inter', sans-serif;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1051;
    padding: 0.5rem 2rem;
}
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    min-width: 160px;
    height: auto;
}
.logo-image {
    height: 40px;
    margin-top: 0.25rem;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 3rem;
    opacity: 0.9;
}
.nav-links a:hover {
    opacity: 1;
}
.nav-btn {
    background-color: #9ACD32;
    color:#000 !important;
    font-weight: 600;
    padding: 0.5rem 3rem;
    border-radius: 8px;
}
.hamburger {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    width: 25px;
    height: auto;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    padding-top: 0.25rem;
}
.hamburger:active {
    transform: scale(1.1);
}
.fullscreen-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* push content top/bottom */
    padding: 2rem;
    transition: top 0.5s ease-in-out;
    z-index: 1050;
}
.fullscreen-menu.show {
    top: 0;
}
.fullscreen-menu .menu-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1; /* take remaining space */
}
.fullscreen-menu .menu-links a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    margin: 0.5rem 0;
}
.fullscreen-menu .menu-links a:hover {
    color: #9ACD32;
}
.fullscreen-menu .menu-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.fullscreen-menu .menu-footer a{
    text-decoration: none;
    color: #aaa;
}
/* ENHANCED MOBILE STYLES */
@media (max-width: 1170px) {
    .show-on-mobile {
        display: flex;
    }
    .logo {
        flex: 0 0 auto;
        min-width: 0;
    }
    .logo-image {
        height: 32px;
    }
    .navbar {
        padding: 0.5rem 1rem;
    }
    .nav-container {
        margin: 0;
    }
    .nav-links {
        flex: 1;
        justify-content: end;
    }
    .nav-links a {
        margin-left: 1rem;
        font-size: 1rem;
        padding-top: 0.25rem;
    }
    .nav-btn {
        border-radius: 5px;
        padding: 0.25rem 0.5rem 0;
    }
}
/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.75rem;
    }
}