/* Shared Navigation Styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
}

.nav-container {
    margin: 0 auto;
    padding: 0 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
}

.logo {
    font-size: 24px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav a:hover, .logo:hover {
    color: #C1326E;
}

/* Underline utility class for nav links */
.nav-underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Body padding no longer needed since navbar is not fixed */