/* FONTS */

@font-face {
    font-family: Paradiso-Regular;
    src: url('./fonts/paradiso_regular.woff2');
    font-weight: 400;
}

@font-face {
    font-family: Paradiso-Light;
    src: url('./fonts/paradiso_light.woff2');
}

@font-face {
    font-family: Paradiso-Bold;
    src: url('./fonts/paradiso_bold.woff2');
}

@font-face {
    font-family: Paradiso-Extra_Bold;
    src: url('./fonts/paradiso_extra_bold.woff2');
}

/* VARIABLES */

:root {
    --paradiso-orange: #f78f1e;
    --paradiso-darkorange: #E35800;
    --sub-text: #ffba71;
    --sub-text2: #ffd287;
    --text-color: #ffffff;
    --menu-link: #000000;
    --menu-background: #ffffff;
    --sort: #ef7a12;
    --sort-select: #e15801;
}

/* GENERAL STYLES */

body {
    font-family: Paradiso-Regular;
    background: var(--paradiso-orange);
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    :root {
    --paradiso-orange: #000000;
    --text-color: #ffffff;
    --sub-text: #a3a3a3;
    --sub-text2: #a3a3a3;
    --menu-background: #000000;
    --menu-link: #ffffff;
    --sort: #898989;
    --sort-select: #505050;
    }

    #socials img, #partners img, #refresh, .ticket img {
        filter: invert(1);
    }

}

/* HEADER */

#nav {
    display: flex;
    align-items: center;
    gap: .7em;
    font-size: 1.15em;
    min-height: 2em;
    margin: .7em .3em -.5em .1em;
    margin-left: 7px;
}

.hamburger {
    width: 1.1em;
    height: .12em;
    background-color: white;
    margin: 3px 0;
}

#nav a {
    color: var(--text-color);
    text-decoration: none;
    position: absolute;
    right: 10px;
}

#nav button {
    display: flex;
    gap: 8px;
    color: var(--text-color);
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

#nav img {
    min-height: 20px;
    max-width: 1em;
}

h1 {
    font-family: Helvetica;
    font-weight: 1000;
    letter-spacing: -7px;
    font-size: 9.3em;
    margin: -20px 0px 2px 2px;
    overflow-x: hidden;
}

header > h2 {
    color: var(--sub-text);
    font-family: Paradiso-Bold;
    font-size: 1.10em;
    margin-left: 1.2em;
    margin-top: -1em;
    margin-bottom: 2em;
}

header > h2 > a {
    color: var(--text-color);
}

/* MAIN */

/* FIRST PART */

#carousel {
    color: white;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    margin-right: 0;
}

#carousel::-webkit-scrollbar {
    display: none; /* hide scroll bar on Safari */
}

ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

li.top, li.top a {
    display: grid;
    width: 257px;
    height: 320.75px;
    grid-template-rows: 1fr auto auto auto auto;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.top section {
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    grid-row: 2;
    grid-column: 1 / -1;
}

.top h3 {
    margin: 0px 10px 5px 10px;
    font-family: Paradiso-Bold;
    font-size: 20px;
    grid-row: 3;
    grid-column: 1 / -1;
}

.top h4 {
    margin-left: 10px;
    font-family: Paradiso-Light;
}

.top h4:nth-of-type(1) {
    margin: 0px 10px 5px 10px;
    grid-row: 4;
    grid-column: 1 / -1;
}

.top h4:nth-of-type(2) {
    margin: 0px 10px 15px 10px;
    grid-row: 5;
    grid-column: 1 / -1;
}

.top img, .top video {
    height: 100%;
    width: auto;
    object-fit: cover;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}

.top p {
    margin: 0px 6px 5px 0px;
    font-family: Paradiso-Light;
    font-size: 13px;
    background-color: black;
    border-radius: 25px;
    padding: .3em .8em;
}

.top a {
    color: white;
    text-decoration: none;
}

.gradient {
    grid-row: 2 / 6;
    grid-column: 1 / 1;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 63%);
}

.top video {
    display: none;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/* Show the video and hide the image on hover */
.top:hover img {
    z-index: 1;
}

.top:hover video {
    display: block;
    overflow-x: hidden;
    z-index: 2;
}

.gradient, .top h3, .top h4, .top p, .top section {
    position: relative;
    z-index: 3;
}

/* SECOND PART */

main > h2 {
    font-family: Helvetica;
    font-weight: 1000;
    letter-spacing: -7px;
    font-size: 7.3em;
    margin: .3em 0px 2px 2px;
    overflow-x: hidden;
}

main > h3 {
    font-family: Paradiso-Bold;
    font-size: 30px;
    margin: 20px 2px 5px 10px;
}

#today {
    margin: 10px 0px 5px 8px;
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

/* THIRD PART */

#sort ul {
    display: flex;
    gap: 3px;
    margin: 3.3em 2px 5em 8px;
    list-style: none;
}

#sort li > button {
    color: var(--text-color);
    background: var(--sort);
    border: none;
    padding: .8em;
    font-family: Paradiso-Bold;
    font-size: 14px;
}

#sort ul > li:first-child > button {
    background: var(--sort-select);
}

.agenda {
    margin-left: 10px;
}

.agenda h3 {
    font-family: Paradiso-Bold;
    font-size: 1.75em;
    margin-bottom: 15px;
}

hr {
    margin-right: 10px;
    border: none;
    height: .6px;
    background-color: var(--sub-text2);
}

.agenda-item {
    margin-right: 10px;
    display: grid;
    justify-content: center;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.agenda-item h4 {
    margin: 0 0 6px 0;
    grid-column: 1;
    grid-row: 1;
}

.agenda-item p:first-of-type {
    color: var(--sub-text2);
    display: flex;
    justify-content: end;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
}

.agenda-item p:last-of-type {
    color: var(--sub-text2);
    margin: 0;
    grid-column: 1 / 3;
    grid-row: 2;
}

/* ARTIST HEADER */

.artist-page > header > a {
    display: flex;
    z-index: 1;
    position: absolute;
    right: 0;
    margin: 15px;
}

.artist-page > header > a > img {
    width: 2.5em;
    height: 2.5em;
}

.artist-page {
    background-color: var(--menu-background);
    color: var(--menu-link);
    overflow-x: hidden;
}

.artist-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-header {
    display: grid;
    height: 400px;
    width: 100%;
    grid-template-rows: auto auto 80px;
    position: relative;
    overflow: hidden;
}

.artist-header img {
    justify-self: center;
    align-self: center;
    object-fit: cover;
    grid-row: 1 / 4;
    grid-column: 1 / -1;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.gradient-artist {
    grid-row: 1 / 4;
    grid-column: 1 / -1;
    align-self: end;
    height: 250px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 63%);
}

.artist-page h1 {
    color: var(--text-color);
    font-family: Helvetica;
    font-weight: 1000;
    font-size: 32.4px;
    margin-left: 15px;
    margin-top: 2px;
    letter-spacing: -.9px;
    grid-row: 3;
    position: absolute;
    width: 100%;
}

.artist-page h2 {
    font-family: Paradiso-Bold;
    color: #606060;
    font-size: 1.75em;
    margin: 20px 15px 5px 15px;
}

.ticket {
    margin: 15px 15px -55px 15px;
    padding: 1em;
    background-color: var(--menu-link);
    transform: translateY(-50px);
}

.ticket a {
    display: flex;
    align-items: center;
    color: var(--menu-background);
    font-family: Paradiso-Bold;
    font-size: 14px;
    text-decoration: none;
}

.ticket div {
    flex-grow: 1;
    margin: 0;
    margin: 0;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(0);
    }
}

.ticket img {
    width: 1.5em;
    height: 1.5em;
    animation: moveRight 3s infinite;
}

.ticket h4 {
    font-family: Paradiso-Light;
    font-size: 12px;
}

/* ARTIST PAGE */

p.disclaimer {
    margin: 30px 15px;
    color: #a5a5a5;
    font-size: 10px;
}

.info {
    margin: 0 0 0 15px;
}

.info > h3 {
    font-family: Paradiso-Bold;
    font-size: 15px;
    margin-top: -10px;
}

.sold-out {
    font-size: 13px;
    color: #a5a5a5;
    margin: 0 20px 0 15px;
}

.sold-out p {
    margin-bottom: -10px;
}

.sold-out a {
    color: #a5a5a5;
}

.limited {
    margin: 30px 22px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: black;
}

.limited img {
    width: 11px;
    margin-right: 8px;
}

.reg-text {
    margin: 0 15px;
    line-height: 23px;
}

.reg-text a {
    color: black;
    font-family: Paradiso-Extra_Bold;
    text-decoration: none;
}

.reg-text img {
    filter: invert(1);
    width:  11px;
    margin-left: 10px;
}

h3#mainhall {
    font-family: Paradiso-Bold;
    font-size: 1em;
    color: black;
    margin: 15px 15px 5px 15px;
}

.about {
    display: flex;
    align-items: center;
    margin: 0px 15px 5px 15px;
}

.about img {
    width: 15px;
    margin-right: 11px;
}

iframe:first-of-type {
    margin: 20px;
    width: 330px;
}

iframe:last-of-type {
    margin: 15px;
    width: 345px;
    height: 200px;
}

.ssj p {
    margin-bottom: 40px;
}

.ssj h2 {
    margin-bottom: 25px;
    font-size: 2.2em;
}

.ssj img {
    margin-left: 1em;
    margin-bottom: 70px;
    width: 345px;
}

.ssj-lineup {
    display: flex;
    margin: 15px 0px 50px 15px;
    overflow-x: scroll;
}

.top2 {
    display: grid;
    width: 257px;
    height: 320.75px;
    grid-template-rows: 1fr auto auto;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    margin-right: 20px;
}

.top2 img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center;
    grid-row: 1 / -1;
    grid-column: 1 / -1;
}

.top2 h4 {
    margin: 0px 20px 10px 20px;
    color: white;
    font-size: 22px;
    grid-row: 2;
    grid-column: 1 / -1;
}

.top2 h3 {
    margin: 0px 20px 20px 20px;
    font-family: Paradiso-Bold;
    color: white;
    font-size: 22px;
    grid-row: 3;
    grid-column: 1;
}

.howtoget img {
    filter: invert(1);
    width: 11px;
    margin-left: 10px;
}

.howtoget a {
    margin-left: 15px;
    color: var(--menu-link);
    text-decoration: none;
}

.howtoget p {
    margin: 30px 15px
}

footer {
    margin: 40px 15px;
}

footer a {
    color: var(--menu-link);
    text-decoration: none;
}

img#refresh {
    width: 16px;
    margin-right: 10px;
}

/* menu */

.mainmenu {
    position: fixed;
    width: 100vw;
    height: auto;
    color: var(--menu-link);
    background-color: var(--menu-background);
    padding: 15px;
    z-index: 100;
    top: -160%;
    transition: top .6s cubic-bezier(1, 0, 0, 1);
    max-height: 42.5em;
    overflow-y: scroll;
}

.mainmenu button {
    color: var(--menu-link);
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 17px;
    margin-bottom: 35px;
    margin-left: -10px;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.mainmenu.open {
    top: 0;
}

#x-cont {
    display: flex;
    position: relative;
    margin-right: 30px;
    justify-content: center;
    flex-direction: column;
}

.x-bar {
    width: 1.25em;
    height: 0.13em;
    background-color: var(--menu-link);
    position: absolute;
}

.x-bar:first-child {
    transform: rotate(45deg);
}

.x-bar:last-child {
    transform: rotate(-45deg);
}

.mainmenu a {
    color: var(--menu-link);
    text-decoration: none;
}

#mm-prio1, #mm-prio2, #mm-prio3 {
    display: block;
}

#mm-prio1 {
    font-family: Paradiso-Extra_Bold;
    letter-spacing: -2px;
    font-size: 43px;
    line-height: 50px;
    margin-bottom: 20px;
}

#mm-prio2 {
    font-family: Paradiso-Bold;
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 20px;
}

#mm-prio3 {
    font-family: Paradiso-Bold;
    font-size: 19px;
    margin-bottom: 60px;
}

#mm-prio3 a {
    display: flex;
    align-items: center;
}

#mm-prio3 img {
    width: 34px;
    border-radius: 25px;
    margin: 5px 15px 3px 0px;
}

.ticket div h3, h4 {
    margin: 0;
}

#socials {
    height: 23px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#socials img {
    height: 20px;
    margin: 5px 25px 5px 0px;
}

#partners {
    margin-bottom: 30px;
}

#partners img {
    height: 23px;
    margin: 5px 15px 5px 0px;
}

#heineken img {
    height: 12px
}

/* SCROLL REVEAL */

.agenda-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.agenda-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* H1 ANIMATION */

span {
    opacity: 0;
    transition: all 1s ease-out;
}

span.fade {
    opacity: 1;
}