@charset "utf-8";
/* CSS Document */

/* -------- HERO-BANNER -------- */

#hero {
    background-image: url(../img/home/DSC_1188-Bearbeitet_BG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 75vh;
    background-blend-mode: luminosity;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -ms-flex-line-pack: end;
        align-content: end;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: var(--space);
    width: 100%;
}

#hero .logo {
    -webkit-filter: drop-shadow(0 0 20px rgba(0,0,0,.1));
            filter: drop-shadow(0 0 20px rgba(0,0,0,.1));
    text-align: right;
    margin-top: 10vh;
}


/* -------- MUSIC PLAYER -------- */ 

#music-player.overlay-player {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: rgba(var(--white-rgb), 0.7);
    padding: var(--space-half) var(--space) var(--space-half) var(--space-half);
    -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
            box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 2;
    width: 90%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.player-container, .controls-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}

.controls-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.player-info {
    text-align: left;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    color: var(--black);
}

.player-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--grey);
    font-family: "TajawalMedium", sans-serif;
    margin: 0;
}

.player-info p {
    font-size: 1rem;
    color: var(--beige5);
    color: var(--grey);
    margin: 0;
}

.player-controls {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.player-controls div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.player-controls button {
    background-color: var(--beige5);
    color: var(--white);
    border: none;
    padding: 8px 10px 10px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#prev-btn, #next-btn {
    color: var(--beige5);
    background: none;
    font-size: 36px;
    padding: 0;
}

.player-controls button:hover {
    background-color: var(--beige3);
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}

#prev-btn:hover, #next-btn:hover {
    color: var(--beige3);
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}

.player-sharing {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}

.progress-container {
    width: 100%;
    margin-top: 10px; /* Abstand zu den Steuerelementen */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.progress-container:hover input[type="range"] {
    height: 14px;
    border-radius: 14px;
}

.progress-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    height: 8px;
    background: var(--beige5); /* Grundfarbe */
    outline: none;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear; /* Übergangsgeschwindigkeit */
    margin-top: .5rem;
    cursor: pointer;
}

.progress-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 100%;
    background: var(--beige3);
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease; /* Geschmeidige Bewegung */
}


#share-btn {
    border: none;
    background: none;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    -o-transition: background-color 0.3s ease, transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

#share-btn svg {
    width: 40px;
    height: 40px;
}

#share-btn:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}

#player-cover {
    width: 120px;
    height: 120px;
    background-color: var(--beige3);
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

#player-functions {
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
}

#player-sharing {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}


/* -------- ABOUT -------- */

#about {
    position: relative;
    width: 100%;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .15;
    background-image: url(../img/home/PICT0757.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  

#about .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

#about .inner > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.about-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

#about .content p {
    margin-bottom: var(--space);
}

#about .headline {
    width: 100%;
}


/* -------- GALLERY -------- */

.gallery {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3; 
    -webkit-column-gap: var(--space-half);
       -moz-column-gap: var(--space-half);
            column-gap: var(--space-half); 
    min-width: 460px;
    width: 100%;
    position: sticky; 
    top: 120px; 
    height: 100vh; 
    overflow: hidden; 
    z-index: 1; 
}

.gallery img {
    width: 100%; 
    margin-bottom: var(--space-half); 
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-filter 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-filter 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-filter 0.3s ease; /* Filter-Effekt animieren */
    display: block; 
    -webkit-filter: grayscale(1);
            filter: grayscale(1); 
}

/* Hover-Effekt */
.gallery img:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); 
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
    -webkit-filter: grayscale(0);
            filter: grayscale(0); 
}

/* Responsives Design */
@media (max-width: 768px) {
    .gallery {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2; 
    }
}

@media (max-width: 480px) {
    .gallery {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1; 
    }
}


/* -------- KONZERTE -------- */

.concerts {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    position: relative;
}

.concerts::before {
    content: "coming soon...";
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: var(--beige3);
}

.concerts h2, 
.concert-schedule {
    margin-left: 5rem;
}

.concert-schedule {
    padding-left: 2rem;
    position: relative;
    -webkit-filter: blur(20px);
            filter: blur(20px);
}

.concert-schedule::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: -webkit-gradient(
        linear,
        left top, left bottom,
        from(var(--black)), 
        color-stop(20%, var(--beige3)), 
        color-stop(80%, var(--beige3)), 
        to(var(--black)) 
    );
    background: -o-linear-gradient(
        top,
        var(--black) 0%, 
        var(--beige3) 20%, 
        var(--beige3) 80%, 
        var(--black) 100% 
    );
    background: linear-gradient(
        to bottom,
        var(--black) 0%, 
        var(--beige3) 20%, 
        var(--beige3) 80%, 
        var(--black) 100% 
    );
    pointer-events: none; 
}

.concerts h2 {
    margin-bottom: 3rem;
}

.month {
    margin-bottom: var(--space);
    position: relative;
}

.month .h2 {
    color: var(--beige3);
    position: absolute;
    left: 0;
    margin-left: -7rem;
}

.concert {
    margin-bottom: 2rem;
}

.date-time {
    color: var(--beige3);
    margin: 0;
}

.concert-schedule .month:first-child {
    opacity: .4;
}


/* FORMULAR */

#kontakt .row {
    margin: -20px 0;
    width: 100%;
}

#kontakt .row:after {
    content: "";
    display: table;
    clear: both;
}

#kontakt .row .col {
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

#kontakt .row .col:first-child {
    padding: 0 var(--space) 0 0;
}

#kontakt .row .col.x-50 {
    width: 50%;
}

#kontakt .row .col.x-100 {
    width: 100%;
}

#kontakt .content-wrapper {
    min-height: 100%;
    position: relative;
}

#kontakt .get-in-touch {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#kontakt .contact-form .form-field {
    position: relative;
    margin: 2rem 0;
}

#kontakt .contact-form .input-text {
    display: block;
    width: 100%;
    border-width: 0 0 2px 0;
    border-color: var(--beige4);
    background: none;
    font-weight: 400;
    padding-bottom: .25rem;
}

#kontakt .contact-form .input-text:focus {
    outline: none;
}

#kontakt .contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
    -webkit-transform: translateY(-.5rem);
        -ms-transform: translateY(-.5rem);
            transform: translateY(-.5rem);
}

#kontakt .contact-form .label {
    position: absolute;
    top: -1.75rem;
    color: #888;
    cursor: text;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#kontakt .contact-form .submit-btn {
    display: inline-block;
    background: none;
    cursor: pointer;
    margin-top: 0;
}

#kontakt .contact-form .input-text,
#kontakt .contact-form textarea.input-text {
    display: block;
    width: 100%;
    border-width: 0 0 2px 0;
    border-color: var(--beige4); 
    background: none;
    font-weight: 400;
    padding-bottom: .25rem;
    height: 2rem; 
    line-height: 1.5rem;
    font-size: 1rem;
    color: #fff;
    resize: vertical;
}

#kontakt .contact-form textarea.input-text {
    min-height: 6rem;
}

#kontakt .contact-form textarea.input-text:focus {
    outline: none;
    border-bottom: 2px solid var(--beige4); 
}




/* -------- TICKET-BOXES -------- */

.ticketboxes {
    width: 100%;
}

.ticketboxes .text, .pricetag, .ticketbox {
    border-radius: var(--space-half);
}

.ticketboxes .text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(var(--black-rgb),.2);
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.ticketbox:hover .text {
    background: rgba(var(--black-rgb),.4);
}

.ticketboxes h2 {
    margin-bottom: var(--space-quarter);
}

.pricetag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--white);
    min-width: 140px;
    min-height: 58px;
    z-index: 2;
}

.pricetag p {
    display: -webkit-inline-box;
    margin: 0;
}

.ticketbox {
    position: relative;
    min-height: 300px;
    min-width: 250px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
    background-blend-mode: soft-light;
}

.ticketbox:hover {
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 0 0 15px rgba(var(--white-rgb),.2);
            box-shadow: 0 0 15px rgba(var(--white-rgb),.2);
}

#w00t-pass {
    background-image: url(../img/festival-vibes/jade-masri-74tlEYKgrBE-unsplash.jpg);
    background-color: var(--mint);
}

#one-day-ticket {
    background-image: url(../img/festival-vibes/joey-thompson-4zN_-PKsbWw-unsplash.jpg);
    background-color: var(--purple);
}


/* -------- MAP -------- */

#map p.intro {
    max-width: 50%;
}

.map-wrapper {
    margin-top: calc(-225px - 10%);
    overflow-x: scroll;
}

.map {
    min-width: 1000px;
    margin-top: 225px;
}

#map a {
	text-decoration: underline;
	text-align: right;
}

#map a:hover {
	text-decoration: none;
}