.site-header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 2rem 0rem;
    background: transparent;
    opacity: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
}

/* Logo Styles */
.logo {
    z-index: 10;
}

.custom-logo-link {
    display: block;
}

.custom-logo {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.9;
}

/* Navigation Styles */
.main-navigation {
    margin-right: 2rem;
}

.primary-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: #ff3333;
}

/* Active state underline effect */
.primary-menu .current-menu-item::after,
.primary-menu li:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3333;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.primary-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3333;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-navigation .primary-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    color: #ff3333;
}

.explore-artists-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff3333;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.explore-artists-btn:hover {
    background-color: #ff3333;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 3.0625rem 2.1875rem;
        width: -webkit-fill-available;
    }

    .header-right .cta-button {
        display: none;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .menu-icon {
        display: block;
        width: 24px;
        height: 24px;
        background-image: url(../images/kalacious-mobile-menu.svg);
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .main-navigation {
        display: none;
    }

    .custom-logo {
        width: auto;
        height: 30.1536865234375px;
        transition: opacity 0.3s ease;
    }
}

.primary-menu a:hover, .primary-menu .current-menu-item a {
    color: white !important;
    text-decoration: none !important;
}
.primary-menu .current-menu-item::after, .primary-menu li:hover::after {
    display: none !important;
}
    