/* NAVIGATION */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 550;
    font-size: 17px;
    letter-spacing: 1px;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 850px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }
}