/* Navbar styles */
#fixedHeader {
    transition: opacity 0.4s, top 0.4s;
    /* opacity: 0 !important; */
    /* pointer-events: none; */
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100vw;
    z-index: 20;
    background: var(--club-blue);
    height: 0;
    border-bottom: 4px solid var(--club-yellow);
}
/* #fixedHeader.show {
    opacity: 1 !important;
    pointer-events: auto;
} */
/* #fixedHeader.hide {
    opacity: 0;
    pointer-events: none;
} */
#fixedHeader nav ul li a {
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
#fixedHeader nav ul li a:hover,
#fixedHeader nav ul li a:focus {
    color: var(--club-yellow);
    border-bottom: 2px solid var(--club-yellow);
    background: rgba(224, 183, 15, 0.08);
}
/* ...add any other navbar-specific CSS here... */

#fixedHeader.show {
    opacity: 1 !important;
    pointer-events: auto;
}

#fixedHeader.hide {
    opacity: 0;
    pointer-events: none;
}
.club-name {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition:
        font-size 0.5s cubic-bezier(.4, 2, .6, 1),
        top 0.5s cubic-bezier(.4, 2, .6, 1),
        left 0.5s cubic-bezier(.4, 2, .6, 1),
        background 0.5s,
        color 0.5s,
        padding 0.5s,
        box-shadow 0.5s,
        width 0.5s,
        transform 0.5s cubic-bezier(.4, 2, .6, 1);
    position: absolute;
    top: 40vh;
    z-index: 10;
    width: 100%;
    text-align: center;
    color: var(--club-yellow);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex-direction: row;
    z-index: 25 !important;
}


.club-name-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.club-name-main {
    display: block;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.club-name-sub {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 0.2em;
}

.club-name-decoration {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 2.5em;
    gap: 0.18em;
}

.club-name-decoration-bar {
    border-radius: 2px;
    margin: 0.04em 0;
    height: 0.05em;
    background: var(--club-yellow);
    display: block;
}

.club-name-decoration-bar:nth-child(1) {
    width: 1em;
}

.club-name-decoration-bar:nth-child(2) {
    width: 1.5em;
}

.club-name-decoration-bar:nth-child(3) {
    width: 2em;
}

.club-name.scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    background: rgba(24, 71, 141, 0.97);
    /* club blue */
    font-size: 1.3rem;
    padding: 0.5rem 0;
    text-align: center;
    color: var(--club-yellow);
    box-shadow: 0 2px 10px rgba(24, 71, 141, 0.15);
    transform: translateY(0);
    text-shadow: none;
    z-index: 30;
}

@media (max-width: 768px) {
    .club-name {
        font-size: 2.5rem;
        gap: 0.7rem;
    }

    .club-name.scrolled {
        font-size: 1.5rem;
    }

    .club-name-decoration-bar {
        height: 0.08em;
    }

    .club-name-decoration-bar:nth-child(1) {
        width: 0.3em;
    }

    .club-name-decoration-bar:nth-child(2) {
        width: 0.5em;
    }

    .club-name-decoration-bar:nth-child(3) {
        width: 0.7em;
    }

    .club-name-decoration {
        min-width: 0;
    }
}
