header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 0; /* Add this */

}

.logo-container {
    height: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.95)
    );
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.logo-container:hover {
    box-shadow: var(--shadow-hover);
}

.logo-main {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-main span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 0.25rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.logo-container {
    position: relative; /* Add this */
}
