/* --- Base Navbar Styles (Shared) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: fixed;
    width: 100%;
    background: rgba(28, 28, 28, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10;
    box-sizing: border-box;
}

.logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-straight {
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-cursive {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    margin-left: 0.5rem;
}

.navbar-logo-icon {
    height: 2rem;
    width: auto;
    margin-right: 0.8rem;
}