@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,700;1,400&family=Lato:wght@300;400;900&display=swap');


html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
    --text-color: rgb(240, 181, 129);
    --dark-highlight: rgb(116, 87, 61);
    --ui-panel-background: rgba(0, 0, 0, 0.263);
    --ui-panel-darker-background: rgba(0, 0, 0, 0.65);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: 'Figtree', sans-serif;
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    margin-block-start: 0;
    margin-block-end: 0;
    overflow: unset;
}

body {
    height: 100vh;
    width: 100vw;
}

button {
    background-color: var(--text-color);
    color: var(--dark-highlight);

}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.panel {
    display: flex;
    justify-content: flex-end;
    height: 800px;
    align-items: center;
    flex-direction: column;

}

.flex-end {
    justify-content: flex-end;
}

.flex-start {
    justify-content: flex-start;
}

#top-panel {
    background-image: url(../img/_sunski-7841.jpg);
    background-position: center;
    background-size: cover;
    background-color: rgb(240, 181, 129);
    height: 100vh;
    justify-content: flex-start;
}

#music {
    background-image: url(../img/bg-second.jpg);
    background-position: center;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
    background-color: black;
}

#third-panel {
    background-image: url(../img/bg-third.jpg);
    background-position: center;
    background-size: cover;
}

#shows {
    background-image: url(../img/bg-fourth.jpg);
    background-position: center;
    background-size: cover;
}

h1 {
    font-weight: bold;
    font-size: 3em;
    letter-spacing: 2px;
    text-align: center;
}

h2 {
    font-size: 1em;
    text-align: center;
    padding-block: 4px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 black;
    background-color: #000000a3;
    width: 100vw;
    padding-block: 20px;
    box-shadow: inset 0px 1px 20px 0px black;
}

.absolute-top {
    position: absolute;
    top: 0%
}

iframe {
    width: 85%;
    margin-block: 2%;
    border-radius: 10px;

}

a {
    color: unset;

}

.show {
    display: grid;
    grid-template-rows: 2fr 1fr 1fr 1fr;
    grid-gap: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    justify-items: center;
    margin: 5px;
    width: 100%;
    justify-content: space-around;
    padding-block: 10px;
    border-radius: 20px;
}

.show-links {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.show-links-header {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.show-pages-count {
    background-color: rgba(0, 0, 0, 0.8);
    margin: 5px;
    width: 33%;
    padding-block: 5px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
}

.show-venue {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.2em;
    text-align: center;
}

.show-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
}

.header-show {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000c2;
    font-size: 0.75em;
    margin-top: 10px;
    padding-inline: 50px;
    border-radius: 25px;
    padding-block: 5px;
    justify-content: center;
    color: unset;
}

/* .header-show p{
    color: #333333;
} */

#header-show-title {
    font-weight: bold;
    text-decoration: underline;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.top-info {
    flex-direction: column;
}

.button-container {
    display: flex;
    width: 100%;
    justify-content: space-around;

}

button {
    padding-inline: 40px;
    font-size: 1.5em;
    border-radius: 20px;
    box-shadow: 4px 4px 7px 2px black;
}

.nav {
    position: absolute;
    background: #000000c2;
    padding: 20px;
    display: flex;
    font-size: 2em;
    bottom: 50%;
    font-weight: unset;
    border-radius: 20px;
}

.nav-container {
    display: flex;
    justify-content: center;
    position: relative;
    top: 90%;
    z-index: 10000;
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
}

a #right-image {
    margin-inline-start: 30px;
}

a #left-image {
    margin-inline-end: 30px;
}

audio {
    box-shadow: 8px 6px 11px 8px black;
    border-radius: 50px;
    margin-inline: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 90%;
}

.audio-player-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 90%;
    padding-block: 20px;
    width: 95%;
}

.audio-group {
    display: flex;
    flex-direction: column;
    margin: 5px;
    text-align: center;
    background-color: var(--ui-panel-darker-background);
    border-radius: 25px;
    padding: 5px;
    max-height: 50vh;
    align-items: center;
    padding-bottom: 6px;
}

.bandcamp-parent {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.bandcamp-iframe {
    width: 100% !important;
    height: 60% !important
}

.new-bandcamp-iframe{
    width: 100% !important;
    height: 100% !important;
    max-width: 500px;

}

#list-of-shows-parent {
    background: var(--ui-panel-darker-background);
}

.set-group {
    max-height: 60vh;
}

.show-group {
    transition: height 0.5s ease-in-out;

}

.show-group-title {
    padding-block: 10px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90%;
}

.show-list-entry {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5%;
    border: 2px solid #68503a;
    padding-block: 20px;
    background: var(--text-color);
    color: black;
    border-radius: 0;
    font-size: 1em;
}

.show-list-entry__venue {
    white-space: nowrap;
}

.show-list-entry__show-number {
    font-size: 0.8em;
}


.audio-player {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #f0b5812b;
    border-radius: 40px;
    margin: 10px;
    justify-content: space-between;
    border-radius: 30px;
}

.playback-template__venue {
    font-size: 2em;
    padding-bottom: 10px;
}

.playback-template__city {
    font-size: 1.1em;
}

.playback-template__date {
    font-size: 0.8em;
}

.audio-player-holder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list-of-sets,
#list-of-shows {
    background: var(--ui-panel-background);
    border-radius: 21px;
    height: fit-content;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    width: 100%;
    transition: max-height 0.5s linear;
}

.collapse {
    max-height: 0 !important;
    overflow: hidden;
}

.collapse-sets {
    max-height: 300px;
}

.menu-icon-deployed {
    animation: spin-out 0.5s ease-in-out;
    transform: rotate(90deg);
}

@keyframes spin-out {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(90deg);
    }
}

@keyframes spin-in {
    from {
        transform: rotate(90deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.menu-icon {
    animation: spin-in 0.5s ease-in-out;
    transform: rotate(0deg);
}



.hide {
    display: none;
}

#list-of-shows> :first-child {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

#list-of-shows> :last-child {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

#audio-player::-webkit-media-controls-panel {
    background-color: rgb(240, 181, 129)
}

.title-image {
    display: flex;
    max-width: 250px;
    max-height: 250px;
    position: absolute;
    top: 35%;
}

.pitch-box {
    background: var(--ui-panel-darker-background);
    color: var(--text-color);
    padding-inline: 20px;
    width: 95%;
    border-radius: 50px;
    padding: 4px;
    text-align: center;
    padding-inline: 40px;
    max-width: 400px;
}

 .pitch-box-2{
    padding: 10px
 }

.spacer {
    padding-inline: 20px;
}

#menu-icon {
    font-size: 1.5em;
}

::-webkit-scrollbar {
    width: 10px;
    height: 1px;
    display: none;
}

::-webkit-scrollbar-track {
    background: var(--text-color);
    /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: var(--dark-highlight);
    /* Color of the scrollbar thumb */
    border-radius: 20px;
    height: 10px;
    width: 8px
}

::-webkit-scrollbar-corner {
    background: transparent;
    /* Background color of the scrollbar corner */
}

@media screen and (min-width:500px) {
    .collapse-sets {
        max-height: 800px !important;
    }

    .collapse {
        max-height: 800px !important;
    }

    #menu-icon {
        display: none;
    }

    .list-of-sets,
    #list-of-shows {
        max-height: 100%;
    }

    .pitch-box {
        font-size: 1em;
    }

}

@media screen and (min-width:800px) {
    h1 {
        font-size: 4em;
        letter-spacing: 16px;
        margin-inline-start: 20px;
    }

    h2 {
        font-size: 1.5em;
        letter-spacing: 2px;
    }

    .info {

        padding-inline: 20px;
        justify-content: space-around;
    }

    .header-show {
        font-size: 1em;
    }

    .top-info {
        flex-direction: row;
    }

    p {
        padding-inline: 10px;
    }

    .bandcamp-iframe{
        width: 100% !important;
        max-width: 700px;
    }

    .show {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* Creates 4 columns with equal width */
        grid-gap: 10px;
        /* Adjust the gap between columns as needed */
        grid-template-rows: unset;
        padding: 10px;
        margin: 5px;
        width: 90%;
        justify-content: space-around;
        align-items: center;
        justify-items: start;
    }

    .show-container {
        display: flex;
        flex-direction: column;
        width: 90%;
        align-items: center;
        height: 65%;
        justify-content: center;
    }

    .audio-player {
        flex-direction: row;
    }

    .show-group {
        width: 50%;
        height: 100%;
        max-height: 98%;
    }

    a {
        padding-inline: 20px;
    }

    .show-links {
        justify-content: flex-start;
    }

    .show-venue {
        padding-left: 15px;
    }

    .playback-template__venue {
        font-size: 3em;
        padding-bottom: 20px;
    }

    .playback-template__city {
        font-size: 2em;
    }

    .playback-template__date {
        font-size: 1.2em;
    }

    .show-group-title {
        font-size: 3em;
    }

}