/* Floating Pill Navbar Wrapper */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    padding: 8px 12px 8px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    position: relative;
    transition: 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Footer Section */
.footer {
    background-color: #102715;
    color: var(--text-light);
    padding: 50px 0 35px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}