:root {
    --bg: #050505;
    --bg-alt: #101010;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.14);
    --accent: #ffffff;
    --muted: #b4b4b4;
    --accent-strong: #f5f5f5;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Edo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, #262626 0, #050505 55%, #000 100%);
    color: var(--accent);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

/* HEADER & NAV */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 46px;
}

.nav-title {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-title strong {
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    color: var(--muted);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-strong);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 820px) {
    .nav-links {
        position: fixed;
        top: 58px;
        right: -100%;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        width: 70%;
        height: calc(100vh - 58px);
        padding: 24px 18px;
        transition: right 0.3s ease;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-toggle {
        display: block;
    }
}

/* HERO */
.hero {
    padding: 40px 16px 36px;
    text-align: center;
}

/* HERO Logo Standard */
.hero-logo {
    width: 260px;
    display: block;
    margin: 0 auto 20px;
    transition: 
        width 0.4s ease,
        top 0.4s ease,
        left 0.4s ease,
        transform 0.4s ease,
        opacity 0.4s ease;
}

/* Sticky-Zustand → Logo sitzt in der HEADER-Mitte */
.hero-logo.sticky {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    margin: 0;
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
}

.hero-title {
    font-size: 2.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-sub {
    margin-top: 10px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    color: var(--muted);
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 999px;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    background: transparent;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-fill {
    background: #ffffff;
    color: #000;
}

.btn:hover {
    filter: invert(1);
}

/* SECTION HEADER */
section {
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-sub {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 280px;
}

/* EVENTS */
.events-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.event-card {
    background: var(--glass);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 14px 14px 16px;
    backdrop-filter: blur(12px);
}

.event-date {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.event-title {
    margin-top: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-info {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* GALLERY */
.gallery-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
    filter: grayscale(0);
    transform: scale(1.06);
}

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

/* NEWS */
.news-box {
    background: var(--glass);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 16px 16px 10px;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.72rem;
    letter-letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.news-text {
    margin-top: 4px;
    font-size: 0.88rem;
}

/* TICKETS */
.tickets-box {
    background: var(--glass);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 20px 16px 18px;
    text-align: center;
}

.tickets-box p {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 420px;
    margin: 0 auto 18px;
}

.tickets-placeholder {
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255,255,255,0.25);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

/* FOOTER */
footer {
    margin-top: 40px;
    padding: 18px 0 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* VIDEO BACKGROUND */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.65) contrast(1);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.video-overlay-fade {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #050505 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/* FLOOR / LINEUP */
.floor-title {
    margin: 30px 0 10px;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.artist-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.artist-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.artist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* zentriert Name + Zeit vertikal neben dem Bild */
    gap: 4px;                  /* kleiner Abstand zwischen Name & Zeit */
}

.artist-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.artist-time {
    margin-top: 4px;
    color: #ddd;
    font-size: 14px;
}

.artist-expand {
    max-height: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.artist-card.open .artist-expand {
    padding: 12px 0 4px 0;
    max-height: 60px;
}

.artist-icon {
    width: 28px !important;
    height: 28px !important;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.artist-icon:hover {
    transform: scale(1.15);
    opacity: 1;
}
.gallery-grid {
    column-count: 3;
    column-gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    background: #000;
    break-inside: avoid;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}

.gallery-item:hover img {
    transform: scale(1.02);
}
.event-card.blurred {
    filter: blur(4px);
    opacity: 0.7;
    pointer-events: none;
}
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.artist-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.artist-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-info {
    padding: 14px 12px;
    text-align: center;
}

.artist-info h3 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}