/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: relative;
}

.logo-image {
    height: 150px;
    width: auto;
    margin-top: -45px;
    margin-bottom: -45px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    visibility: hidden;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px auto;
    transition: all 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        padding: var(--spacing-md);
        flex-direction: column;
        align-items: center;
        clip-path: circle(0% at top right);
        transition: 0.4s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-toggle:checked ~ .nav-links {
        clip-path: circle(150% at top right);
    }
}