/* variables */
@font-face {
    font-family: FjallaOne;
    src: url(FjallaOne-Regular.woff2) format("woff");
}

/* colors */
:root {
    --text-color: #fdf002;
    --text-border: #fa988b;
    --white: #fff2c8;
    --grad-1: rgb(121,169,189);
    --grad-2: rgb(128, 61, 154);
    --grad-3: rgb(9, 9, 121);
    --grad-4: rgb(2, 0, 36);
    --bg: #1f1f17;
  }

/* General Styles */
body {
    min-height: 100vh;
    line-height: 1.6;
    font-family: FjallaOne, sans-serif;
    font-size: 15px;
    margin: 0;
    text-rendering: optimizeLegibility;
}

main {
    padding: 20px;
    background-color: var(--bg);
    overflow-x: hidden;
}

.container {
    margin-bottom: 20px;
    padding: 50px 0;
    min-height: calc(100vh - 140px);
}

.container:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {
    .container {
        padding: 50px;
    }
}

/* typo */
p,
a {
    color: var(--text-color);
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    font-weight: 400;
}

h1,
h2 {
    color: var(--text-color);
    font-size: 50px;
}

h3 {
    color: var(--white);
    font-size: 35px;
}

h4 {
    color: var(--white);
    font-size: 25px;
}

p,
a {
    width: fit-content;
    padding: 10px;
    margin: 10px 0;
    font-size: 20px;    
}

a {
    text-decoration: none;
}

#info .date {
    font-size: 30px;
}

footer .satz {
    font-size: 30px;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

footer .archiv p,
footer .archiv a {
    font-size: 15px;
    filter: none;
}

footer .archiv p {
    color: var(--white);
}

footer .archiv a {
    padding: 0;
    color: var(--text-color);
}

@media screen and (min-width: 400px) {
    p,
    a,
    h1,
    h2 {
        filter: drop-shadow(0 -1px 0 var(--text-border)) drop-shadow(0 1px 0 var(--text-border)) drop-shadow(-1px 0 0 var(--text-border)) drop-shadow(1px 0 0 var(--text-border))
    }

    h1,
    h2 {
        font-size: 60px;
    }

    h3 {
        font-size: 50px;
    }

    h4 {
        font-size: 35px;
    }

    p,
    a {
        font-size: 30px;
    }

    #info .date {
        font-size: 40px;
    }

    footer .satz {
        font-size: 40px;
    }
}

@media screen and (min-width: 992px) {
    h1 {
        font-size: 160px;
    }

    p,
    a {
        font-size: 40px;
    }

    #info .date {
        font-size: 80px;
    }
}

/* header */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(0deg, var(--grad-4) 0%, var(--grad-3) 14%, var(--grad-2) 23%, var(--grad-1) 100%);
    height: calc(100vh - 140px);
}

header #title {
    font-size: 61px;
    letter-spacing: 7px;
    width: 100%;
    overflow: hidden;
}

header #title svg {
    margin-top: 10%;
}

header #title svg text {
    fill: #fdf002;
    text-align: center;
    filter: drop-shadow(0 -1px 0 #fa988b) drop-shadow(0 1px 0 #fa988b) drop-shadow(-1px 0 0 #fa988b) drop-shadow(1px 0 0 #fa988b);
}

@media (max-aspect-ratio: 3 / 4) {
    header #title svg {
        margin-top: 40%;
    }
}

/* info */
#info.container {
    background: linear-gradient(180deg,rgb(2,0,36) 69%,rgb(9,9,121) 98%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

@media screen and (min-width: 992px) {
    p.date {
        font-size: 80px;
    }
}

/* programm */
#programm.container {
    background: linear-gradient(180deg,rgb(9,9,121) 11%,rgb(128,61,154) 44%,rgb(121,169,189) 89%);
}

#programm .inner-container {
    padding: 40px 10px;
    max-width: 1000px;
    margin: auto;
}

#programm .inner-container .day {
    border-top: 1px solid;
    padding: 50px 0;
}

#programm .inner-container .band {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
}

#programm .inner-container .band p {
    padding-top: 0;
    padding-bottom: 0;
}

#programm .inner-container .band p.time {
    color: var(--white);
}

#programm .inner-container .band .name {
    max-width: calc(100% - 160px);
}


#programm .inner-container .band a.name:hover::before {
    filter: invert(69%) sepia(6%) saturate(2930%) hue-rotate(318deg) brightness(99%) contrast(98%);
}

#programm .inner-container .band .name {
    padding: 10px;
    text-align: right;
}

#programm .inner-container .band a.name::before {
    content: url('pointer_link.svg');
    position: absolute;
    width: 15px;
    margin-left: -20px;
}

#programm .inner-container .silentdisco-container .channels {
    display: flex;
    flex-direction: column;
}

#programm .inner-container .silentdisco-container .channels .ch1,
#programm .inner-container .silentdisco-container .channels .ch2 {
    padding-top: 50px;
}

#programm .inner-container .silentdisco-container .band .name {
    max-width: unset;
}

@media screen and (min-width: 400px) {
    #programm .inner-container .band a.name::before {
        width: 30px;
        margin-left: -40px;
    }
}

@media screen and (min-width: 992px) {
    #programm .inner-container .silentdisco-container .channels {
        flex-direction: row;
    }

    #programm .inner-container .silentdisco-container .channels .ch1,
    #programm .inner-container .silentdisco-container .channels .ch2 {
        width: calc(50% - 10px);
        padding-top: unset;
    }

    #programm .inner-container .silentdisco-container .channels .ch1 {
        padding-right: 10px;
        margin-right: 10px;
        border-right: 1px solid var(--white);
    }
}

/* footer */
footer.container {
    background: var(--grad-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
}

footer.container .archiv {
    padding-top: 100px;
}