/* Navbar shell */
.navbar {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

/* Centered container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /*added this */
}

/* Logo */
.logo {
    height: 60px;
}

/* Nav links */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.navOptions {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
}

.navOptions:hover {
    color: #2563eb;
}

/* Sign up button */
.signup-btn {
    background-color: #2563eb;
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.signup-btn:hover {
    background-color: #1d4ed8;
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar-right {
        z-index: 1100;
        /* position: absolute;
        top: 80px;
        right: 0; */
        background-color: white;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        display: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .navbar-right a {
        padding: 0.75rem 1.5rem;
    }

    .navbar-right.active {
        display: flex;
    }

    .hero{
        position: relative;
    }
}
