/* Modern Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.logo {
    font-size: 1.5rem;
    color: #222;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.acuity-embed-button {
    background: linear-gradient(90deg, #007bff 60%, #0056b3 100%);
    color: #fff !important;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.acuity-embed-button:hover,
.acuity-embed-button:focus {
    background: linear-gradient(90deg, #0056b3 60%, #007bff 100%);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #007bff;
    margin-left: 1.5rem;
    user-select: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        width: 75%;  /* Adjusted width */
        transform: translateX(100%);
        transition: transform 0.3s;
        padding-top: 60px;
        z-index: 1000;
        color: black;
        gap: 30px;

    }

    .logo {
        font-size: 18px !important;
    }

    .nav-links.show {
        transform: translateX(0);
    }

    .hamburger {
        display: block;
        font-family: Arial, sans-serif;  /* Ensures the use of a standard font */
        font-style: normal;              /* Removes italic style if inherited */
        font-size: 30px;
        cursor: pointer;
    }

}