/* --- Header/Banner --- */


.header {
    position: sticky;
    top: 0;
    width: 100%;


    padding: 0.2rem 0;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(5, 3, 8, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;

}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
}


.header-title {
    font-family: var(--title-font);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
    text-shadow: 0 0 10px var(--rose-pink-300), 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 0.1em;
}

.header-title span {
    display: inline-block;
    transition: transform 0.3s ease;
    letter-spacing: 0.05em; /* Added letter-spacing here */
}

.word-spacer {
    display: inline-block;
    width: 0.5em; /* Adjust as needed for word spacing */
    /* You might need to adjust this width based on visual appearance */
}

.header-title a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent (.header-title) */
}

.header-title a:hover {
    color: var(--white); /* Example: make it white on hover */
}

.header-link {
    display: block;
    margin-top: 0.0rem;
    margin-bottom: 0.5em;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: color 0.3s ease;
    text-align: center;
    font-family: 'Cinzel', serif; /* Changed to Cinzel */
    text-transform: uppercase;
}

.header-link:hover {
    color: var(--white);
}
