.navigation-bar {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Sticky desktop navigation */
.show-for-large.custom {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar a {
    color: white;
    font-size: 17px;
    padding: 20px 25px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
	min-height: 68px;
    transition: none; /* override the global 1.1s link transition so highlight/hover snap instantly */
}

@media only screen and (max-width: 1210px) {
    .navigation-bar {
        background-color: black;
        background-image: none;
    }

    .navigation-bar a {
        display: block;
        text-align: center;
    }
}

@media only screen and (min-width: 1211px) {
    .navigation-bar {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.navigation-bar a.current {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    border: 0px;
    color: var(--color-cobalt-deep);
}

.navigation-bar a:hover {
    color: white;
    border-color: transparent;
}

.navigation-bar a.current:hover {
    color: var(--color-cobalt-deep);
}

.navigation-bar a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

#navigation-home-symbol {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px;
    max-height: 25px;
}

.navigation-bar a[data-nav='tickets'] {
    color: white;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

.navigation-bar a[data-nav='tickets'] svg {
    margin-right: 5px;
    transform: rotate(-45deg);
    color: white;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

/*-----------------------
 Hamburger
 -----------------------*/
#hamburger {
    position: fixed;
    z-index: 9000; /* above page UI, below the loader overlay (9998) */
    right: 0;
    top: 0;
    width: 55px;
    height: 55px;
    /* Button reset for accessibility */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    /* Position icon in top right */
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

#hamburger:focus {
    outline: none;
}

#hamburger:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

#hamburger svg {
    width: 35px;
    height: 35px;
    color: white;
}

.on-red #hamburger svg {
    color: red;
}

/* Override Foundation's hide-for-large and keep hamburger container visible up to 1210px */
@media only screen and (min-width: 64em) and (max-width: 1210px) {
    .hide-for-large.custom {
        display: block !important;
    }
}

/* Ensure hamburger is visible up to 1210px */
@media only screen and (max-width: 1210px) {
    #hamburger {
        display: block !important;
    }
}

/* Hide hamburger and its container from 1211px onwards */
@media only screen and (min-width: 1211px) {
    .hide-for-large.custom {
        display: none !important;
    }

    #hamburger {
        display: none !important;
    }
}

#offCanvas {
    background-color: black;
    z-index: 500;
}

/* Close button in off-canvas menu */
#offCanvas .close-button {
    display: block;
    width: 100%;
    text-align: right;
    padding: 15px 20px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

#offCanvas .close-button:hover {
    color: var(--color-accent-soft);
}

#offCanvas .close-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

#offCanvas .close-button span {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 5px;
}
