#toggle-lineup-mode {
    width: 200px;
    text-align: center;
    transition: all ease 0.25s;
}

.lineup-widget-wrapper {
    position: relative;
}

.lineup-navigation-wrapper {
    display: flex;
    position: fixed;
    gap: 0.5rem;
    bottom: 35px;
    left: 35px;
    z-index: 50;
}

#toggle-image-mode, #toggle-text-mode {
    text-decoration: none;
}

#toggle-image-mode, #toggle-text-mode {
    background: #BF3E21;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
}

#toggle-image-mode:hover, #toggle-text-mode:hover {
    cursor: pointer;
}

#toggle-image-mode.active, #toggle-text-mode.active {
    text-decoration: underline;
}

.lineup-image-grid-wrapper, .lineup-text-grid-wrapper {
    display: none;
}

.lineup-image-grid-wrapper.active {
    display: grid;
} 

.lineup-text-grid-wrapper.active {
    display: flex;
    gap: 1rem;
}

.lineup-text-grid-wrapper.active {
    max-width: 1080px;
    margin: 0 auto;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.headliners, .subheadliners, .undercard {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.text-artist-wrapper {
    font-family: 'Speedy';
    color: #f2c335;
    padding: 0.5rem 1rem;
    line-height: 1;
    text-align: center;
    transition: all 0.25s ease;
}

.text-artist-wrapper:hover {
    cursor: pointer;
    transform: scale(1.125);
    color: white;
}

.text-artist-name.headliner {
    font-size: 2.25rem;
    margin: 0 auto;
}

.text-artist-name.subheadliner {
    font-size: 1.5rem;
    margin: 0 auto;
}

.text-artist-name.undercard {
    font-size: 1rem;
    margin: 0 auto;
}

/* Lineup Image Grid Styles */
.image-artist-wrapper {
    display: grid;
    position: relative;
    grid-template-rows: auto;
    border-right: 0px solid black;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    border-left: 0px solid black;
    overflow: hidden;
}

.image-artist-wrapper:hover {
    cursor: pointer;
}
.image-artist-image-wrapper {
    display: grid;
}

.image-artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #f2c335 80%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.image-artist-image:hover {
    cursor: pointer;
}

.image-artist-text-wrapper:before {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    height: 75px;
    width: 100%;
    background: #BF3E21;
    transform: skew(0deg, -5deg);
    z-index: 0;
    border-top: 0px solid black;
}

.image-artist-text-wrapper {
    font-family: "Speedy", Sans-serif;
    background: #BF3E21;
    /* color: #F2C335; */
    color: #ffffff;
    display: grid;
    position: relative;
    z-index: 2;
    height: 5rem;
    align-items: start;
}

.image-artist-name {
    font-size: 1.25rem;
    line-height: 1.125;
    padding: 0.5rem 1rem 0rem 1rem;
    margin: 0;
    z-index: 3;
}
/**
*   Desktop
*   max-width: none
*   min-width: 1024px
*/
@media screen and (min-width: 1024px) {
    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

/**
*   Tablet
*   max-width: 1023px
*   min-width: 801px
*/
@media screen and (min-width: 801px) and (max-width: 1023px) {
    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}



/* Modal */
.lineup-modal-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,.5);
    z-index: 99;
}

.lineup-modal-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 65vw;
    aspect-ratio: 2 / 1;
    background: black;
    color: white;
    max-width: 1500px;
}

#lineup-modal-artist-image > img {
    display: grid;
}

.lineup-modal-right-column {
    padding: 1rem 1.5rem;
}

#lineup-modal-artist-name > p {
    font-family: "Speedy", Sans-serif;
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0;
}

.lineup-modal-navigation {
    position: fixed;
    width: 80vw;
    display: flex;
    justify-content: space-between;
}

#lineup-modal-previous, #lineup-modal-next, #lineup-modal-close {
    display: flex;
    width: 4rem;
    height: 4rem;
    background: #bf3e21;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all ease 0.25s;
}

#lineup-modal-previous:hover, #lineup-modal-next:hover, #lineup-modal-close:hover {
    cursor: pointer;
    transform: scale(1.125);
}

#lineup-modal-close {
    position: fixed;
    top: 5%;
    right: 5%;
}

#lineup-modal-artist-bio {
    overflow-y: auto;
}

.lineup-modal-right-column {
    display: flex;
    flex-direction: column;
}

#lineup-modal-artist-name {
    flex: .1;
    display: flex;
    align-items: center;
}

.lineup-modal-links-container {
    flex: .125;
    display: flex;
    align-items: center;
}

.lineup-modal-links-container a {
    color: white !important;
    font-size: 1.25rem;
    margin-right: 1rem;
}

#lineup-modal-artist-bio {
    flex: .75;
    overflow-y: auto;
}

#lineup-modal-artist-bio > p {
    margin: 0;
}

/**
*   Mobile
*   max-width: 800px 
*   min-width: none
*/
@media screen and (max-width: 800px) {
    .lineup-text-grid-wrapper.active {
        padding-top: 6rem;
    }

    .lineup-image-grid-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        aspect-ratio: auto;
    }

    .lineup-modal-content {
        width: 95vw;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    #lineup-modal-artist-bio {
        overflow-y: auto;
        max-height: 250px !important;
    }

    .lineup-modal-navigation {
        width: 95vw;
        top: 50%;
    }
    #lineup-modal-previous, #lineup-modal-next, #lineup-modal-close {
        width: 3rem;
        height: 3rem;
        border-radius: 0px;
    }
}