/* variables */
@font-face {
    font-family: 'Frutiger';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/frutiger-cufonfonts-webfont/Frutiger.woff') format('woff');
}


/* colors */
:root {
    --text-color: #886176;
    --text-border: #FCBEE7;
    --white: #fff2c8;
    --grad-1: #fff2c8;
    --grad-2: #FCBEE7;
    --grad-3: #C7EAE4;
    --grad-4: #A7E8BD;
    --grad-5: #EFB69B;
    --grad-6: #989792;
    --bg: #1f1f17;
  }

/* General Styles */
body {
    min-height: 100vh;
    line-height: 1.6;
    font-family: Frutiger, 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;
    }
}

/* animation */
@keyframes color-animation {
    from {color: var(--grad-5)}
    to {color: var(--text-color)}
  }

/* 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,
footer .satz {
    color: var(--grad-5);
    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 {
    padding: 0 20px;
    text-align: center;
}

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

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

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))
    }

    #programm .inner-container .band p.time {
        color: var(--grad-5);
        filter: drop-shadow(0 -1px 0 var(--text-color)) drop-shadow(0 1px 0 var(--text-color)) drop-shadow(-1px 0 0 var(--text-color)) drop-shadow(1px 0 0 var(--text-color))
    }

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

    h3,
    footer .satz {
        font-size: 50px;
        filter: drop-shadow(0 -1px 0 var(--text-color)) drop-shadow(0 1px 0 var(--text-color)) drop-shadow(-1px 0 0 var(--text-color)) drop-shadow(1px 0 0 var(--text-color))
    }

    h4 {
        font-size: 35px;
    }

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

    #info .date {
        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 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, var(--grad-2) 0%, var(--grad-1) 14%);
    margin-bottom: 20px;
}

header .text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .zeichnung {
    height: 100vh;
}

header img {
    max-width: 100%;
    height: auto;
}

header img.titel {
    width: 90%;
    padding-top: 300px;
}

header img.datum {
    width: 60%;
    padding: 20px 0;
}

header img.orange {
    width: 500px;
    padding-bottom: 100px;
}

header img.sitzt {
    position: absolute;
    width: 80px;
    bottom: 0;
    right: 0;
    display: none;
}

header .fotos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    line-height: 0;
    margin-bottom: 100px;
}

header .fotos a {
    margin: 5px;
}

header .fotos a img.thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity .2s linear;
}

header .fotos a img.thumb:hover {
    opacity: 1;
}

@media screen and (min-width: 400px) {
    header img.titel {
        width: 500px;
    }

    header img.datum {
        width: 250px;
    }
}

@media screen and (min-width: 992px) {
    header img.titel {
        width: 700px;
    }

    header img.datum {
        width: 350px;
    }
}

/* info */
#info.container {
    background: linear-gradient(180deg,var(--grad-2) 69%,var(--grad-3) 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,var(--grad-3) 11%,var(--white) 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 .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;
}

h3 .left,
h3 .right,
h3 .text {
    display: flex;
}

.animation-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.animation-container .left span.color-animation,
.animation-container .right span.color-animation,
.animation-container .text.color-animation {
    animation-name: color-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.animation-container .left span.color-animation:nth-child(1),
.animation-container .right span.color-animation:nth-child(4) {
    animation-delay: 300ms;
}

.animation-container .left span.color-animation:nth-child(2),
.animation-container .right span.color-animation:nth-child(3) {
    animation-delay: 600ms;
}

.animation-container .left span.color-animation:nth-child(3),
.animation-container .right span.color-animation:nth-child(2) {
    animation-delay: 900ms;
}

.animation-container .left span.color-animation:nth-child(4),
.animation-container .right span.color-animation:nth-child(1) {
    animation-delay: 1200ms;
}

.animation-container .text.color-animation {
    animation-delay: 1200ms;
}

#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 {
    position: relative;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
}

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

footer.container img.sitzt {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px;
    width: 80px;
}