/* nav-styles.css */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border, #e5e5e5);
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #111 !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
    border-bottom: 2px solid #111;
    outline: none;
}

.nav-links a.active {
    border-bottom: 2px solid #111;
}

.logo {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px; /* Fixed size for consistency */
    width: auto;
    transition: opacity 0.2s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    margin-left: 1rem;
}

.nav-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 20px rgba(0,0,0,0.07);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-content {
        padding: 0 1.5rem;
    }
}