/* Navigation bar */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 196, 169, 0.2);
    z-index: 100;
    padding: 1rem 0;
}

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

.nav-logo {
    color: #D97D55;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #6FA4AF;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D97D55;
}

/* Responsive design for navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

