@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url('assets/img/menu.png') no-repeat center;
    background-size: 30px;
    cursor: pointer;
    z-index: 1001; /* Über dem Menü */
}

.toggle.active {
    background: url('assets/img/close.png') no-repeat center;
    background-size: 25px;
    cursor: pointer;
    /* Hinzugefügt: Leichter Hintergrund für Sichtbarkeit */
    background-color: rgba(255, 255, 255, 0.1);
}

.showcase {
    display: flex;
    min-width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background: #111;
    z-index: 1;
    position: relative;
    overflow: hidden; /* Verhindert Überlauf des Hintergrunds */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0; /* Hinter dem Overlay */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dunkleres Grau mit 70% Transparenz */
    z-index: 1; /* Über dem Hintergrundbild, unter dem Text */
}

/* Desktop-Bild */
@media (min-width: 768px) {
    .background-image {
        background-image: url('assets/img/bgdesktop.png');
    }
}

/* Mobile-Bild - Anpassung für volle Breite */
@media (max-width: 767px) {
    .background-image {
        background-image: url('assets/img/bgmobile.png');
        background-size: 100% auto; /* Fülle die Breite, Höhe wird angepasst */
        background-position: center; /* Zentriert das Bild */
    }
}

.showcase video {
    display: none; /* Video bleibt deaktiviert */
}

.text {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Responsive Schriftgröße für h2 */
.text h2 {
    font-size: clamp(0.6em, 3vw, 8em); /* Neue Mindestgröße 0.6em, Skalierung mit 3vw */
    color: #fff;
    text-transform: uppercase;
    line-height: 1; /* Verhindert Überlappungen */
    padding: 0 10px; /* Kleiner Padding für kleine Bildschirme */
}

/* Zusätzliche Anpassung für sehr kleine Bildschirme (unter 480px) */
@media (max-width: 480px) {
    .text h2 {
        font-size: clamp(0.5em, 2vw, 1em); /* Noch kleinere Skalierung für sehr kleine Geräte */
    }
}

/* Sicherstellen, dass der Text nicht zu klein wird */
.text h2 {
    min-font-size: 0.5em; /* Mindestgröße, falls unterstützt */
}

.text h3 {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.text p {
    font-size: 1.1em;
    color: #fff;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
}

.text .flex-item {
    margin: 10px;
}

.text a {
    display: inline-block;
    font-size: 1em;
    background: #fff;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    color: #111;
    letter-spacing: 2px;
    transition: 0.2s;
}

.text a:hover {
    letter-spacing: 6px;
}

.social {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(0.5);
    transition: 0.5s;
}

.social li a:hover {
    transform: scale(0.5) translateY(-15px);
}

.menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.menu {
    z-index: 1000;
    position: fixed; /* Überlagerung ohne Verschiebung */
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(100%); /* Startet außerhalb */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}

.menu .close-btn {
    width: 60px;
    height: 60px;
    background: url('assets/img/close.png') no-repeat center;
    background-size: 25px;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Leichter Hintergrund für Sichtbarkeit */
}

.menu ul {
    width: 100%;
    padding: 0;
}

.menu ul li {
    list-style: none;
    margin: 20px 0;
    width: 100%;
}

.menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: rgb(255, 255, 255);
    display: block; /* Sicherstellt, dass Links den ganzen Bereich nutzen */
    padding: 10px 20px;
}

.menu ul li a:hover {
    color: #8B0000; /* Tiefes Rot für Hover-Effekt im Menü */
}

.tickets {
    background: #000;
    padding: 100px;
    color: white;
    display: flex;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.tickets h2 {
    margin-top: 25px;
    font-size: 5em;
    text-transform: uppercase;
}

.locations {
    margin-top: 2em;
    margin-bottom: 1em;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-item {
    margin-top: 1em;
    padding: 20px 40px 20px 40px;
    border: 2px solid white;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    align-items: center;
    justify-content: space-between;
}

.zusatz {
    margin-top: 1em;
    padding: 20px 40px 20px 40px;
    border: 2px solid white;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
}

.l1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l1 h3 {
    font-size: 2em;
}

.l-item h3 {
    font-size: 2em;
}

.city {
    align-self: flex-start;
}

.btn-ticket {
    padding: 10px 20px 10px 20px;
    color: black;
    background-color: white;
    text-decoration: none;
}

.g-date {
    justify-self: center;
}

.g-btn {
    justify-self: end;
}

.events {
    background: #000;
    padding: 100px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.events h2 {
    font-size: 5em;
    margin-top: 120px; /* Abstand oben hinzugefügt */
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #8B0000, #8B0000); /* Tiefes Rot */
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.2); /* Dunkelrote Schattierung */
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row; /* Bild rechts, Text links */
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse; /* Bild links, Text rechts */
}

.timeline-content {
    width: 45%;
    text-align: center;
    transition: transform 0.5s ease;
}

.timeline-content img {
    width: 100%;
    max-width: 400px;
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.timeline-text {
    width: 45%;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.5s ease, background 0.3s ease;
}

.timeline-text h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-text p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #8B0000; /* Tiefes Rot */
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5); /* Dunkelrote Schattierung */
}

.timeline-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: calc(50% - 40px);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: calc(50% + 6px);
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 5em;
    }

    .text h3 {
        font-size: 2em;
    }

    .tickets {
        margin: 0;
        padding: 15px;
    }

    .tickets h2 {
        font-size: 5em;
    }

    .l-item {
        width: 100%;
        padding: 10px 10px;
    }

    .zusatz {
        width: 100%;
        padding: 10px 10px;
    }

    .l-item h3 {
        font-size: 1em;
    }

    .l1 h3 {
        font-size: 1em;
    }

    .btn-ticket {
        padding: 5px 20px;
    }

    .events {
        padding: 40px 20px;
    }

    .events h2 {
        font-size: 3em;
        margin-top: 100px; /* Anpassung für kleinere Bildschirme */
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-content,
    .timeline-text {
        width: 100%;
        margin: 10px 0;
    }

    .timeline-content img {
        max-width: 100%;
    }

    .timeline-text {
        padding: 15px;
    }

    .timeline-text h3 {
        font-size: 1.5em;
    }

    .timeline-text p {
        font-size: 1em;
    }

    .timeline-item::before {
        left: 27px;
    }

    .timeline-item::after {
        display: none;
    }
}