/* Main navigation */
nav {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
    background-color: rgba(255, 255, 255, 0.33);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Garamond', serif;
    z-index: 9999999;
}

footer {
    background-color: transparent;
}

/* Logo */
.logo img {
    width: 150px;
}

/* Navigation links with center positioning */
.nav-links {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 2rem;
    z-index: 99998;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: #333;
    font-size: 1.4rem;
    transition: color 0.3s ease;
    align-items: center;
}

.nav-links a.active {
    color: var(--indigo);
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--indigo);
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 99999;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99997;
}

.overlay.active {
    display: block;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-img {
    width: 24px;
    height: 24px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .nav {
        padding: 0.5rem 2rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 5rem 0;
        transition: 0.3s ease;
        transform: none;
        left: auto;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .nav-links.active {
        right: 0;
    }
}