/* HEADER */
.site-header {
    background: #000;
    padding: 20px 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-magenta);
    letter-spacing: 1px;
}
.logo img {
    height: 70px; /* increase from whatever it is now */
    width: auto;
}


/* NAVIGATION */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-pink));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-neon-pink);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--color-magenta);
    font-weight: 700;
}

.main-nav a.active::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #d100a8; /* Sassy magenta */
    border-radius: 2px;
    transition: all 0.3s ease;
}
