.navbar-container {
    position: fixed; /* Make the container fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other elements */
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Apply blur effect to content underneath */
}

.navbar {
    max-width: var(--max-width); /* Use the variable for max-width */
    margin: 0 auto; /* Center the navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2%;
}

.logo {
    font-size: 1.5rem;
    /* letter-spacing: 0.3rem; */
    font-weight: bold;
    color: #000;
}

.contact-btn {
    padding: 0.75rem 2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

/* contact-btn a remove all stylings on a*/
.contact-btn a {
    color: white;
    text-decoration: none;
}

.contact-btn:hover {
    background: #333;
}