
:root {
    --bg: #050b17;
    --panel: rgba(17, 31, 53, 0.68);
    --panel-strong: rgba(15, 27, 46, 0.82);
    --line: rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.08);
    --text: #f5f7ff;
    --muted: #a5b0c7;
    --accent: #6e63ff;
    --accent-2: #9c65ff;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    background:
        radial-gradient(circle at 12% 18%, rgba(35, 75, 180, 0.18), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(119, 56, 183, 0.18), transparent 28%),
        linear-gradient(150deg, #030814, #071329 55%, #050a15);
}

button,
input,
textarea,
select {
    font: inherit;
}

img,
video {
    max-width: 100%;
}

a {
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Ambient background glows */

.ambient {
    position: fixed;
    z-index: -2;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.a1 {
    width: 560px;
    height: 560px;
    left: -230px;
    top: 70px;
    background: #173f9b;
}

.a2 {
    width: 500px;
    height: 500px;
    right: -190px;
    top: 180px;
    background: #7137b7;
}

.a3 {
    width: 420px;
    height: 420px;
    left: 38%;
    bottom: -260px;
    background: #28458f;
}

/* Main wrapper */

.site-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 48px;
    position: relative;
}

/* Glass surface */

.glass {
    background:
        linear-gradient(135deg, rgba(28, 48, 80, 0.72), rgba(7, 17, 34, 0.67));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* Navigation */

.nav {
    position: sticky;
    top: 12px;
    z-index: 30;

    display: flex;
    align-items: center;
    gap: var(--space-3);

    padding: 16px 20px;

    border-radius: var(--radius-lg);
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;

    color: #fff;
    text-decoration: none;
}

.logo img {
    display: block;
    width: clamp(170px, 12vw, 210px);
    max-width: 210px;
    height: auto;
    object-fit: contain;
}


.nav nav {
    display: flex;
    gap: 7px;
    margin: auto;
}

.nav nav a,
.social a,
.footer a {
    color: #eaf0ff;
    text-decoration: none;
}

.nav nav a {
    padding: 10px 13px;

    border-radius: 10px;

    color: #d8dfec;

    font-size: 13px;
    font-weight: 500;
}

.nav nav a:first-child,
.nav nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, #6b5fff, #6754df);
    box-shadow: 0 8px 24px rgba(103, 84, 223, 0.25);
}

/* Navigation: Kontakt-Untermenü */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.submenu-caret {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    opacity: .72;
    transition: transform .2s ease;
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;

    width: 210px;
    padding: 8px;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(7, 18, 37, .97);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -11px;
    height: 11px;
}

.submenu a {
    display: block;
    width: 100%;
    padding: 11px 12px !important;
    border-radius: 10px;
    color: #cfd8ea !important;
    background: transparent !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
    color: #fff !important;
    background: rgba(113, 99, 255, .16) !important;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.has-submenu:hover .submenu-caret,
.has-submenu:focus-within .submenu-caret {
    transform: rotate(180deg);
}

.social {
    display: flex;
    gap: 11px;
}

.social a {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: #dfe6f5;
}

.social a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

/* Hero */

.hero {
    border: 0;
    position: relative;

    min-height: 560px;
    margin-top: var(--space-4);
    padding: 64px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    overflow: hidden;

    border-radius: var(--radius-xl);

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 10, 23, 0.96) 0%,
            rgba(5, 12, 27, 0.80) 42%,
            rgba(5, 11, 24, 0.25) 72%
        ),
        url("../img/Deschawü@Sea.webp");

    background-size: 108% auto;
    background-position: 30% 75%;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 68%,
        rgba(3, 8, 18, 0.44)
    );

    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero h1 {
    max-width: 650px;
    margin: 24px 0 20px;

    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero p {
    max-width: 560px;

    color: #d0d8e8;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.actions {
    display: flex;
    gap: 14px;

    margin-top: 30px;
}

.btn {
    min-height: 48px;
    padding: 12px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;

    color: #fff;
    text-decoration: none;

    background: linear-gradient(135deg, #6a5eff, #5c4be0);
    box-shadow: 0 10px 28px rgba(79, 58, 210, 0.28);

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(79, 58, 210, 0.34);
}

.btn.ghost {
    background: rgba(6, 14, 29, 0.43);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 3;

    padding: 12px 15px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;

    color: #dce4f3;

    background: rgba(6, 14, 28, 0.46);
    backdrop-filter: blur(14px);

    font-size: 12px;
}

.hero-stat strong {
    display: block;

    margin-bottom: 2px;

    color: #fff;

    font-size: 17px;
    font-weight: 600;
}

/* Main three-column content */

.grid3 {
    display: grid;
    grid-template-columns: 0.92fr 1.02fr 1.15fr;
    gap: var(--space-3);

    margin-top: var(--space-4);
}

.card,
.wide {
    border-radius: var(--radius-lg);
}

.card {
    min-height: 100%;

    padding: 28px;
}

.wide {
    margin-top: var(--space-4);
    padding: 32px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);

    margin-bottom: var(--space-3);
}

.section-head h2,
.wide h2 {
    margin: 0;

    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-link {
    color: #a9a8ff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;
}

.section-link:hover {
    color: #d0ceff;
}

/* Events / kompakte aufklappbare Terminliste */

.events-card {
    overflow: hidden;
}

.events-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.events-heading-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-list {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;

    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.event-list::-webkit-scrollbar {
    width: 7px;
}

.event-list::-webkit-scrollbar-track {
    background: transparent;
}

.event-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.event-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.26);
}

.event-compact {
    border-bottom: 1px solid var(--line-soft);
}

.event-compact:last-child {
    border-bottom: 0;
}

.event-summary {
    width: 100%;
    padding: 15px 2px;

    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;

    border: 0;
    outline: 0;

    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.event-summary:hover .event-title,
.event-summary:focus-visible .event-title {
    color: #ffffff;
}

.event-summary:focus-visible {
    border-radius: 12px;
    box-shadow: 0 0 0 2px rgba(110, 99, 255, 0.55);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #f3f6ff;
    line-height: 1;
}

.event-date strong {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.event-date span {
    margin-top: 6px;

    color: #92a1bc;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.event-title {
    min-width: 0;

    color: #e8edf8;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    transition: color 0.2s ease;
}

.event-arrow {
    color: #9ca9bf;

    font-size: 18px;
    line-height: 1;

    transform-origin: center;

    transition:
        transform 0.25s ease,
        color 0.2s ease;
}

.event-details {
    display: grid;
    grid-template-rows: 0fr;

    margin-left: 68px;
    padding-right: 30px;

    color: #9ba9c0;

    font-size: 12px;
    font-weight: 300;
    line-height: 1.65;

    opacity: 0;

    transition:
        grid-template-rows 0.28s ease,
        opacity 0.22s ease;
}

.event-details-inner {
    min-height: 0;
    overflow: hidden;
}

.event-compact.open .event-details {
    grid-template-rows: 1fr;
    padding-bottom: 16px;
    opacity: 1;
}

.event-compact.open .event-arrow {
    color: #d9d4ff;
    transform: rotate(180deg);
}

/* Tracks / kompakte Audio-Playlist */

.track-list {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 8px;

    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.track-list::-webkit-scrollbar {
    width: 7px;
}

.track-list::-webkit-scrollbar-track {
    background: transparent;
}

.track-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.track-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.26);
}

.track {
    padding: 12px 0 14px;

    border-bottom: 1px solid var(--line-soft);
}

.track:first-child {
    padding-top: 2px;
}

.track:last-child {
    border-bottom: 0;
    padding-bottom: 2px;
}

.track-title {
    margin-bottom: 7px;

    color: #f0f4ff;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.track audio {
    display: block;

    width: 100%;
    height: 34px;

    margin: 0;

    opacity: 0.92;
}

/* Videos */

.video-item {
    display: grid;
    gap: 10px;

    padding: 6px 0 16px;
}

.video-shell {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;

    background: #02050a;
}

/* Videos */

.video-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-heading-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.video-heading-icon path {
    fill: currentColor;
    stroke: none;
}


/* vorhandener Code */
.video-item {
    display: grid;
    gap: 10px;
    padding: 6px 0 16px;
}

.video-item video {
    width: 100%;
    aspect-ratio: 16 / 9;

    display: block;

    object-fit: cover;

    background: #000;
}

.play-cover {
    aspect-ratio: 16 / 9;

    display: grid;
    place-items: center;

    background: linear-gradient(145deg, #152d52, #3d245f);

    font-size: 36px;
}

.muted {
    color: #93a1bd;

    font-size: 13px;
}

.empty {
    min-height: 92px;

    padding: 24px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    color: #8795ae;

    font-size: 12px;
}

/* About */

.about-grid {
    display: block;
}

.about-grid p {
    max-width: none;
    width: 100%;
    margin: 0;
    color: #b9c4d9;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
}


.about-grid h2 {
    margin-bottom: 24px;
    font-weight: 500;
}

/* Gallery */

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.gallery img:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

/* Social media */

.social-strip {
    text-align: center;
}

.social-strip p {
    margin: 0 0 22px;

    color: #9aa7be;

    font-size: 13px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-buttons a {
    min-width: 150px;

    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    color: #e8eef9;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.04);

    font-size: 12px;
    font-weight: 500;
}

.social-buttons a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

/* Contact */

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form textarea {
    grid-column: 1 / -1;

    min-height: 150px;

    resize: vertical;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    padding: 14px 15px;

    outline: none;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    color: #fff;

    background: rgba(7, 19, 39, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #7468ff;
    box-shadow: 0 0 0 3px rgba(114, 102, 255, 0.1);
}

.contact-form .btn {
    width: max-content;
}

/* Messages */

.flash {
    margin: 12px 0;

    padding: 13px 15px;

    border-radius: 11px;
}

.flash.success {
    background: rgba(28, 125, 80, 0.27);
}

.flash.error {
    background: rgba(164, 56, 76, 0.33);
}

/* Footer */

/* =========================================
   FOOTER
========================================= */

.footer{
    margin-top: var(--space-4);
    padding: 28px 30px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:10px;

    border-radius:18px;

    color:#8f9db6;
    text-align:center;
}

.footer-copy{
    font-size:13px;
    font-weight:300;
    color:#8f9db6;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    font-size:12px;
}

.footer-links a{
    color:#d6deef;
    text-decoration:none;
    transition:.25s;
}

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

.footer-links span{
    color:#65738d;
}

/* Responsive */

@media (max-width: 920px) {

    .logo img {
        width: 150px;
        max-width: 150px;
    }

    .nav nav {
        position: absolute;
        top: 76px;
        left: 14px;
        right: 14px;

        display: none;
        flex-direction: column;

        padding: 16px;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;

        background: rgba(7, 18, 37, 0.96);
    }

    .nav nav.open {
        display: flex;
    }

    .nav-item {
        display: block;
        width: 100%;
    }

    .nav-menu-link {
        width: 100%;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        width: auto;
        margin: 4px 0 2px 14px;
        padding: 4px 0 4px 10px;

        border: 0;
        border-left: 1px solid rgba(255, 255, 255, .10);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .submenu::before {
        display: none;
    }

    .submenu a {
        padding: 9px 12px !important;
        font-size: 12px;
    }

    .submenu-caret {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .social {
        display: none;
    }

    .hero {
        min-height: 520px;
        padding: 44px 28px;

        grid-template-columns: 1fr;

        background-size: cover;
        background-position: 62% center;
        background-repeat: no-repeat;
    }

    .grid3 {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .logo img {
        width: 130px;
        max-width: 130px;
    }

    .site-wrap {
        width: min(100% - 18px, 1180px);
        margin-top: 9px;
    }

    .nav {
        padding: 12px 14px;

        border-radius: 18px;
    }

    .hero {
        min-height: 480px;
        margin-top: 14px;
        padding: 32px 20px;

        border-radius: 20px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stat {
        display: none;
    }

    .card,
    .wide {
        padding: 20px;

        border-radius: 18px;
    }

    .section-head h2,
    .wide h2 {
        font-size: 21px;
    }

    .actions {
        flex-wrap: wrap;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea {
        grid-column: auto;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================
   BANDMITGLIEDER
========================================= */

.band-section {
    margin-top: var(--space-4);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.band-member {
    text-align: center;
}

.band-member img {
    width: 100%;
    aspect-ratio: 1 / 1.15;

    display: block;

    object-fit: cover;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.band-member img:hover {
    transform: translateY(-4px) scale(1.015);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.32);
}

.band-member h3 {
    margin: 14px 0 0;

    color: #e7ecf7;

    font-size: 15px;
    font-weight: 400;
}


/* Tablet */

@media (max-width: 920px) {

    .band-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Smartphone */

@media (max-width: 600px) {

    .band-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================================
   DESCHAWÜ HERO TITEL
   Durchgehender Verlauf: Weiss -> Logo-Rot
========================================= */

h1.hero-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    max-width: 650px;
    margin: 24px 0 20px;

    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

h1.hero-title .hero-title-white {
    display: block !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Ein EINZIGER Verlauf über beide unteren Zeilen */
h1.hero-title .hero-gradient {
    display: inline-block !important;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff8f6 8%,
        #ffe5df 18%,
        #ffc0b2 30%,
        #ff8a74 43%,
        #ff5b50 57%,
        #ff3447 72%,
        #ed123f 86%,
        #d90039 100%
    ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Punkt hinter Leben, Unterkante bündig zur Schrift */
h1.hero-title .hero-title-dot {
    display: inline-block !important;

    width: 0.20em !important;
    height: 0.20em !important;
    margin-left: 0.08em !important;

    border-radius: 50% !important;

    background: radial-gradient(
        circle at 30% 28%,
        #ffd36a 0%,
        #ff9135 18%,
        #ff4d43 46%,
        #eb0d3e 72%,
        #b90047 100%
    ) !important;

    box-shadow:
        0 0 10px rgba(237, 0, 57, 0.58),
        0 0 22px rgba(237, 0, 57, 0.28) !important;

    -webkit-text-fill-color: initial !important;
    vertical-align: baseline !important;

    /* kleine optische Korrektur: Punkt sitzt auf derselben Unterkante */
    transform: translateY(0.02em) !important;
}

@media (max-width: 600px) {
    h1.hero-title .hero-title-dot {
        width: 0.18em !important;
        height: 0.18em !important;
        margin-left: 0.07em !important;
    }
}



/* =========================================
   AUDIO PLAYLIST - RESPONSIVE FEINSCHLIFF
========================================= */

@media (max-width: 600px) {
    .track-list {
        max-height: 360px;
        padding-right: 5px;
    }

    .track {
        padding: 10px 0 12px;
    }

    .track-title {
        font-size: 13px;
    }

    .track audio {
        height: 32px;
    }
}


/* =========================================
   TERMINE - RESPONSIVE FEINSCHLIFF
========================================= */

@media (max-width: 600px) {
    .events-heading-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .event-list {
        max-height: 360px;
        padding-right: 5px;
    }

    .event-summary {
        grid-template-columns: 48px minmax(0, 1fr) 20px;
        gap: 11px;
        padding: 13px 0;
    }

    .event-date strong {
        font-size: 22px;
    }

    .event-title {
        font-size: 13px;
    }

    .event-details {
        margin-left: 59px;
        padding-right: 20px;
    }
}

/* =========================================
   TERMINE - ALLE ANZEIGEN / AUSBLENDEN
========================================= */

.events-card .event-extra {
    display: none;
}

.events-card.show-all-events .event-extra {
    display: block;
}

.events-toggle {
    width: 100%;

    margin-top: 10px;
    padding: 12px 0 2px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 0;
    border-top: 1px solid var(--line-soft);

    color: #aeb9cf;
    background: transparent;

    font-size: 12px;
    font-weight: 400;

    cursor: pointer;
}

.events-toggle:hover {
    color: #ffffff;
}

.events-toggle-arrow {
    display: inline-block;

    font-size: 15px;
    line-height: 1;

    transition: transform 0.22s ease;
}

.events-card.show-all-events .events-toggle-arrow {
    transform: rotate(180deg);
}


/* =========================================
   SONGS - MEHR ANZEIGEN / AUSBLENDEN
   ========================================= */
.track-extra {
    display: none;
}

.show-all-tracks .track-extra {
    display: block;
}

.tracks-toggle {
    width: 100%;
    margin-top: 10px;
    padding: 12px 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-top: 1px solid var(--line-soft);
    color: #aeb9cf;
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.tracks-toggle:hover {
    color: #ffffff;
}

.tracks-toggle-arrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.22s ease;
}

.show-all-tracks .tracks-toggle-arrow {
    transform: rotate(180deg);
}

/* =========================================
   TERMINE - VEREIN / VERANSTALTER
   ========================================= */

.event-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-organizer {
    display: block;
    color: #8fa0bd;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .event-organizer {
        font-size: 10px;
    }
}

/* =========================================
   RADIO / INTERVIEW UNTER DEM VIDEO
========================================= */

.radio-block {
    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid var(--line-soft);
}

.radio-block-head {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 14px;
}

.radio-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex: 0 0 34px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;

    color: #e8edf8;
    background: rgba(255, 255, 255, 0.035);

    font-size: 14px;
}

.radio-block-head strong,
.radio-block-head small {
    display: block;
}

.radio-block-head strong {
    color: #f2f5ff;

    font-size: 14px;
    font-weight: 500;
}

.radio-block-head small {
    margin-top: 2px;

    color: #8fa0bd;

    font-size: 10px;
    font-weight: 300;
}

.radio-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.radio-item + .radio-item {
    padding-top: 13px;
    border-top: 1px solid var(--line-soft);
}

.radio-title {
    margin-bottom: 7px;

    color: #e8edf8;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.radio-item audio {
    display: block;

    width: 100%;
    height: 34px;

    opacity: 0.92;
}

/* =========================================
   BILDER-LAUFBAND
   6 Bilder Desktop / 3 Tablet / 2 Smartphone
   ========================================= */

.gallery-slider-section {
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-slider-viewport {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.gallery-slider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider-track::-webkit-scrollbar {
    display: none;
}

.gallery-slider-track img {
    flex: 0 0 calc((100% - 70px) / 6);
    min-width: 0;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gallery-slider-track img:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30);
}

.gallery-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(110, 99, 255, 0.94), rgba(100, 72, 220, 0.94));
    box-shadow: 0 8px 24px rgba(70, 50, 190, 0.28);
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-arrow:hover {
    transform: scale(1.06);
    filter: brightness(1.08);
    box-shadow: 0 10px 30px rgba(70, 50, 190, 0.40);
}

.gallery-arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 99, 255, 0.22), 0 10px 30px rgba(70, 50, 190, 0.40);
}

@media (max-width: 920px) {
    .gallery-slider-track img {
        flex-basis: calc((100% - 28px) / 3);
    }
}

@media (max-width: 600px) {
    .gallery-slider {
        gap: 8px;
    }

    .gallery-slider-track {
        gap: 10px;
    }

    .gallery-slider-track img {
        flex-basis: calc((100% - 10px) / 2);
        border-radius: 13px;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 23px;
    }
}



/* =========================================
   GALERIE LIGHTBOX / POPUP
   ========================================= */

.gallery-lightbox-trigger {
    cursor: zoom-in;
}

.gallery-lightbox-trigger:focus-visible {
    outline: none;
    border-color: rgba(137, 125, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(110, 99, 255, 0.22), 0 18px 36px rgba(0, 0, 0, 0.30);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(2, 7, 16, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-dialog {
    position: relative;
    width: min(1180px, 96vw);
    height: min(820px, 90vh);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(21, 38, 66, 0.93), rgba(5, 14, 29, 0.96));
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.58);
    overflow: hidden;
}

.gallery-lightbox-figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 56px 78px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gallery-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 145px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-caption {
    min-height: 20px;
    color: #c5cede;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(7, 17, 34, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    transform: scale(1.06);
    background: rgba(110, 99, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.24);
}

.gallery-lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 29px;
    line-height: 1;
}

.gallery-lightbox-nav {
    top: 50%;
    width: 48px;
    height: 58px;
    border-radius: 16px;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox-prev {
    left: 16px;
}

.gallery-lightbox-next {
    right: 16px;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .gallery-lightbox {
        padding: 10px;
    }

    .gallery-lightbox-dialog {
        width: 100%;
        height: 88vh;
        border-radius: 18px;
    }

    .gallery-lightbox-figure {
        padding: 58px 48px 42px;
    }

    .gallery-lightbox-image {
        max-height: calc(88vh - 130px);
        border-radius: 12px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox-nav {
        width: 38px;
        height: 48px;
        border-radius: 13px;
        font-size: 28px;
    }

    .gallery-lightbox-prev {
        left: 6px;
    }

    .gallery-lightbox-next {
        right: 6px;
    }
}

/* =========================================
   INSTAGRAM FEED UNTER DER BILDERGALERIE
   Letzte 6 Posts / 3 Tablet / 2 Smartphone
   ========================================= */

.instagram-feed-block {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--line-soft);
}

.instagram-feed-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.instagram-feed-heading h2 {
    margin: 0;
}

.instagram-profile-link {
    color: #aaa8ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.instagram-profile-link:hover {
    color: #ffffff;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.instagram-feed-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(4, 12, 25, 0.55);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
    text-decoration: none;
}

.instagram-feed-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.instagram-feed-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(2, 7, 16, 0.42));
    opacity: 0.72;
    transition: opacity 0.24s ease;
}

.instagram-feed-item:hover img {
    transform: scale(1.045);
    filter: brightness(1.06);
}

.instagram-feed-item:hover::after {
    opacity: 0.9;
}

.instagram-feed-item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 99, 255, 0.25), 0 16px 32px rgba(0, 0, 0, 0.28);
}

.instagram-feed-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #ffffff;
    background: rgba(4, 10, 22, 0.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    line-height: 1;
}

.instagram-feed-empty {
    min-height: 110px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    color: #8795ae;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 920px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .instagram-feed-block {
        margin-top: 30px;
        padding-top: 26px;
    }

    .instagram-feed-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 16px;
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .instagram-feed-item {
        border-radius: 13px;
    }

    .instagram-feed-badge {
        top: 7px;
        right: 7px;
        min-width: 27px;
        height: 27px;
        border-radius: 9px;
        font-size: 12px;
    }
}

/* =========================================
   SOCIAL ICONS - MARKENFARBEN BEI HOVER
   ========================================= */

.social .social-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #dfe6f5;
    background: transparent;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.social .social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social .social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.055);
}

.social .social-facebook:hover {
    color: #1877f2;
    box-shadow: 0 8px 22px rgba(24, 119, 242, 0.18);
}

.social .social-youtube:hover {
    color: #ff0033;
    box-shadow: 0 8px 22px rgba(255, 0, 51, 0.17);
}

.social-instagram svg {
    overflow: visible;
}

.social-instagram .instagram-brand {
    opacity: 0;
    transition: opacity 0.22s ease;
}

.social-instagram .instagram-mono {
    opacity: 1;
    transition: opacity 0.22s ease;
}

.social-instagram:hover .instagram-brand {
    opacity: 1;
}

.social-instagram:hover .instagram-mono {
    opacity: 0;
}

.social .social-instagram:hover {
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.18);
}


/* =========================================
   SOCIAL BUTTONS - ECHTE ICONS + MARKENFARBEN
   ========================================= */

.social-buttons .social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #e8eef9;
}

.social-buttons .social-button-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex: 0 0 20px;
}

.social-buttons .social-button-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-buttons .social-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.social-buttons .social-facebook:hover {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.30);
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.14);
}

.social-buttons .social-youtube:hover {
    color: #ff0033;
    border-color: rgba(255, 0, 51, 0.28);
    box-shadow: 0 10px 24px rgba(255, 0, 51, 0.13);
}

.social-buttons .social-instagram svg {
    overflow: visible;
}

.social-buttons .social-instagram .instagram-brand {
    opacity: 0;
    transition: opacity 0.22s ease;
}

.social-buttons .social-instagram .instagram-mono {
    opacity: 1;
    transition: opacity 0.22s ease;
}

.social-buttons .social-instagram:hover .instagram-brand {
    opacity: 1;
}

.social-buttons .social-instagram:hover .instagram-mono {
    opacity: 0;
}

.social-buttons .social-instagram:hover {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.28);
    box-shadow: 0 10px 24px rgba(225, 48, 108, 0.14);
}

/* =========================================
   KONTAKT - ZWEISPALTIG + AUFTRITTSANFRAGE
   ========================================= */

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -180px;
    bottom: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 94, 255, 0.20), transparent 68%);
    pointer-events: none;
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.contact-kicker {
    display: block;
    margin-bottom: 8px;
    color: #9b98ff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.contact-heading h2 {
    margin: 0 0 10px;
}

.contact-heading p {
    margin: 0;
    color: #9aa8c0;
    font-size: 14px;
    line-height: 1.7;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card,
.booking-cta {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(5, 15, 31, 0.40);
}

.contact-info-label {
    display: block;
    margin-bottom: 8px;
    color: #9b98ff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-info-card strong {
    display: block;
    margin-bottom: 16px;
    color: #f6f8ff;
    font-size: 20px;
    font-weight: 500;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #adb9ce;
    font-size: 14px;
}

.contact-info-list a {
    width: fit-content;
    color: #dbe3f3;
    text-decoration: none;
}

.contact-info-list a:hover {
    color: #aaa5ff;
}

.booking-cta {
    margin-top: auto;
    background:
        linear-gradient(135deg, rgba(104, 87, 255, 0.13), rgba(155, 76, 255, 0.07)),
        rgba(5, 15, 31, 0.40);
}

.booking-cta > span {
    display: block;
    color: #f2f4ff;
    font-size: 17px;
    font-weight: 500;
}

.booking-cta p {
    margin: 7px 0 16px;
    color: #909eba;
    font-size: 12px;
    line-height: 1.6;
}

.booking-request-btn {
    gap: 9px;
}

.booking-request-btn span {
    font-size: 18px;
    line-height: 1;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(5, 15, 31, 0.34);
}

.contact-form label {
    min-width: 0;
}

.contact-form label > span:first-child:not(.contact-consent span) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-form textarea {
    grid-column: auto;
    min-height: 92px;
    resize: vertical;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 15px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(4, 13, 28, 0.72);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #76859f;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #7468ff;
    box-shadow: 0 0 0 3px rgba(114, 102, 255, 0.10);
}

.contact-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 3px;
    color: #8f9db6;
    font-size: 11px;
    line-height: 1.65;
    cursor: pointer;
}

.contact-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: #7468ff;
}

.contact-consent a {
    color: #bbb7ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-submit {
    display: flex;
    justify-content: flex-start;
    padding-top: 2px;
}

.contact-form .btn {
    width: max-content;
}

@media (max-width: 920px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .booking-cta {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-layout,
    .contact-info,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 16px;
    }

    .contact-form .full {
        grid-column: auto;
    }

    .contact-info-card,
    .booking-cta {
        padding: 18px;
    }

    .contact-submit .btn,
    .booking-request-btn {
        width: 100%;
    }
}

/* =========================================
   FINAL: NAVIGATION OHNE BUTTONFLAECHEN
   ========================================= */
.nav { overflow: visible !important; }
.nav nav { overflow: visible !important; }

.nav nav > a,
.nav nav > .nav-item > a {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: #d8dfec !important;
}

.nav nav > a:first-child {
    background: transparent !important;
    box-shadow: none !important;
    color: #d8dfec !important;
}

.nav nav > a:hover,
.nav nav > a:focus-visible,
.nav nav > .nav-item > a:hover,
.nav nav > .nav-item > a:focus-visible,
.has-submenu:hover > .nav-menu-link,
.has-submenu:focus-within > .nav-menu-link {
    background: transparent !important;
    box-shadow: none !important;
    color: #a49cff !important;
}

.has-submenu { position: relative; }
.has-submenu .submenu {
    z-index: 9999 !important;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    color: #a49cff !important;
}

/* =========================================
   FINAL: KONTAKT
   ========================================= */
.contact-info-label {
    color: #9b98ff !important;
}

.contact-form textarea {
    min-height: 92px !important;
    height: 92px;
}

.contact-submit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2px;
}

.contact-submit .btn {
    width: auto !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 12px 20px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .contact-submit .btn {
        width: auto !important;
    }
}

/* =========================================
   COOKIE CONSENT
   ========================================= */
.cookie-consent[hidden]{display:none!important}
.cookie-consent{position:fixed;inset:0;z-index:10000;display:grid;place-items:end center;padding:24px;pointer-events:none}
.cookie-consent-backdrop{position:absolute;inset:0;background:rgba(2,7,16,.58);backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px);pointer-events:auto}
.cookie-consent-card{position:relative;z-index:1;width:min(660px,100%);padding:28px;border-radius:24px;pointer-events:auto;background:linear-gradient(145deg,rgba(24,43,73,.97),rgba(7,17,34,.97));box-shadow:0 28px 90px rgba(0,0,0,.48)}
.cookie-consent-card h2{margin:0 42px 14px 0;font-size:22px;font-weight:500}
.cookie-consent-card p{margin:0;color:#aeb9cf;font-size:13px;line-height:1.75}
.cookie-consent-close{position:absolute;top:16px;right:18px;width:38px;height:38px;border:0;border-radius:10px;color:#dce4f3;background:transparent;font-size:26px;line-height:1;cursor:pointer}
.cookie-consent-close:hover{background:rgba(255,255,255,.06);color:#fff}
.cookie-consent-actions{display:grid;grid-template-columns:1fr 1fr 1.25fr;gap:10px;margin-top:22px}
.cookie-consent-actions .btn{width:100%;min-height:46px;padding:10px 14px}
.cookie-consent-links{display:flex;justify-content:center;gap:16px;margin-top:18px;font-size:12px}
.cookie-consent-links a{color:#aaa7ff;text-decoration:none}.cookie-consent-links a:hover{color:#fff}
.cookie-settings-back{margin:0 0 14px;padding:0;border:0;color:#aaa7ff;background:transparent;cursor:pointer}
.cookie-category{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:12px;padding:16px;border:1px solid rgba(255,255,255,.09);border-radius:15px;background:rgba(4,12,25,.42)}
.cookie-category strong,.cookie-category small{display:block}.cookie-category strong{font-size:14px;font-weight:500}.cookie-category small{margin-top:5px;color:#8f9db6;font-size:11px;line-height:1.5}
.cookie-required{flex:0 0 auto;color:#8fd6aa;font-size:11px;font-weight:500}
.cookie-category-toggle{position:relative;cursor:pointer}.cookie-category-toggle input{position:absolute;opacity:0;pointer-events:none}
.cookie-switch{position:relative;flex:0 0 44px;width:44px;height:24px;border-radius:999px;background:#25334c;box-shadow:inset 0 0 0 1px rgba(255,255,255,.09);transition:.2s}
.cookie-switch:after{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;border-radius:50%;background:#cbd3e2;transition:.2s}
.cookie-category-toggle input:checked + .cookie-switch{background:linear-gradient(135deg,#7168ff,#9a68ff)}
.cookie-category-toggle input:checked + .cookie-switch:after{transform:translateX(20px);background:#fff}
.cookie-settings-actions{grid-template-columns:1fr 1fr}
.footer-cookie-settings{padding:0;border:0;color:#d6deef;background:transparent;font:inherit;cursor:pointer}.footer-cookie-settings:hover{color:var(--accent)}
.cookie-inline-settings{padding:0;border:0;color:#aaa7ff;background:transparent;text-decoration:underline;cursor:pointer}
.instagram-consent-note{padding:28px 16px;text-align:center;border:1px dashed rgba(255,255,255,.1);border-radius:16px;color:#8f9db6;font-size:12px}
.instagram-feed-grid.consent-blocked{display:none}
body.cookie-consent-open{overflow:hidden}
@media(max-width:700px){.cookie-consent{padding:12px}.cookie-consent-card{padding:22px}.cookie-consent-actions,.cookie-settings-actions{grid-template-columns:1fr}.cookie-category{align-items:flex-start}.cookie-switch{margin-top:2px}}


/* =========================================
   GOOGLE FONTS LOCAL
   ========================================= */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
}   
   
 
   /* =========================================
   STICKY NAVIGATION
   ========================================= */
#termine,
#musik,
#videos,
#about,
#galerie,
#kontakt {
    scroll-margin-top: 140px;
}   
   
   
   
   

/* =========================================
   STARTSEITEN-KARTEN: TERMINE + MUSIK BÜNDIG
   Gleicher Inhaltsstart und gleiche Unterkante
   ========================================= */
@media (min-width: 921px) {
    #termine,
    #musik {
        display: flex;
        flex-direction: column;
    }

    #termine .section-head,
    #musik .section-head {
        min-height: 32px;
        flex: 0 0 auto;
    }

    #termine .event-list,
    #musik .track-list {
        height: 430px;
        max-height: 430px;
        flex: 0 0 430px;
    }

    #termine .events-toggle,
    #musik .tracks-toggle {
        margin-top: auto;
    }
}

/* Oberer Inhaltsstart: sichtbaren Abstand unter den Überschriften angleichen.
   Termine haben durch .event-summary oben 15px Innenabstand,
   der erste Song standardmäßig nur 2px. Daher den ersten Song auf 15px setzen. */
@media (min-width: 921px) {
    #musik .track:first-child {
        padding-top: 15px;
    }
}

/* =========================================
   MUSIK-PLATTFORMEN - MARKENFARBEN BEI HOVER
   Spotify / Apple Music / Amazon Music
   ========================================= */

/* Header-Icons */
.social .social-spotify:hover {
    color: #1ed760;
    box-shadow: 0 8px 22px rgba(30, 215, 96, 0.20);
}

.social .social-apple-music:hover {
    color: #fa243c;
    box-shadow: 0 8px 22px rgba(250, 36, 60, 0.20);
}

.social .social-amazon-music:hover {
    color: #25d1da;
    box-shadow: 0 8px 22px rgba(37, 209, 218, 0.20);
}

/* Große Buttons im Bereich „Folge uns auf Social Media“ */
.social-buttons .social-spotify:hover {
    color: #1ed760;
    border-color: rgba(30, 215, 96, 0.34);
    background: rgba(30, 215, 96, 0.07);
    box-shadow: 0 10px 24px rgba(30, 215, 96, 0.16);
}

.social-buttons .social-apple-music:hover {
    color: #fa243c;
    border-color: rgba(250, 36, 60, 0.34);
    background: rgba(250, 36, 60, 0.07);
    box-shadow: 0 10px 24px rgba(250, 36, 60, 0.16);
}

.social-buttons .social-amazon-music:hover {
    color: #25d1da;
    border-color: rgba(37, 209, 218, 0.34);
    background: rgba(37, 209, 218, 0.07);
    box-shadow: 0 10px 24px rgba(37, 209, 218, 0.16);
}

/* =========================================
   H2 TITELPUNKT - WIE IM HERO
   ========================================= */
.section-title-dot::after {
    content: "";
    display: inline-block;
    width: 0.34em;
    height: 0.34em;
    margin-left: 0.16em;
    border-radius: 50%;
    vertical-align: baseline;
    transform: translateY(0.02em);
    background: radial-gradient(
        circle at 30% 28%,
        #ffd36a 0%,
        #ff9135 18%,
        #ff4d43 46%,
        #eb0d3e 72%,
        #b90047 100%
    );
    box-shadow:
        0 0 10px rgba(237, 0, 57, 0.58),
        0 0 22px rgba(237, 0, 57, 0.28);
}

@media (max-width: 600px) {
    .section-title-dot::after {
        width: 0.32em;
        height: 0.32em;
        margin-left: 0.14em;
    }
}



/* Footer: Cookie-Link auf dem Handy kürzer */
@media (max-width: 600px) {
    .footer-cookie-settings {
        font-size: 0;
        white-space: nowrap;
    }

    .footer-cookie-settings::after {
        content: "COOKIES";
        font-size: 12px;
        font-weight: 300;
        line-height: 1.4;
    }
}


/* =========================================
   MOBILE: KARTEN UNTEN KÜRZER
   ========================================= */
@media (max-width: 600px) {

    /* Termine + Musik nicht künstlich hoch halten */
    #termine,
    #musik,
    #videos {
        min-height: 0 !important;
        height: auto !important;
    }

    /* Kartenhöhe nur nach Inhalt */
    #termine.card,
    #musik.card,
    #videos.card {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 20px !important;
    }

    /* Listen nicht unnötig auf feste Höhe ziehen */
    #termine .event-list,
    #musik .track-list {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Abstand unter "Alle Termine / Mehr Songs" reduzieren */
    #termine .events-toggle,
    #musik .tracks-toggle {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Video / Radio ebenfalls kompakter */
    #videos .video-item,
    #videos .radio-block {
        margin-bottom: 0 !important;
    }
}
/* =========================================
   MOBILE-MENUE: SOCIAL- UND MUSIK-ICONS
   ========================================= */
.mobile-menu-social {
    display: none;
}

@media (max-width: 920px) {
    .mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .mobile-menu-social .social-icon {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        flex: 0 0 34px;
        padding: 0 !important;
        border-radius: 10px;
        color: #dfe6f5 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-menu-social .social-icon svg {
        width: 19px;
        height: 19px;
        display: block;
    }

    .mobile-menu-social .social-icon:hover,
    .mobile-menu-social .social-icon:focus-visible {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.055) !important;
    }

    .mobile-menu-social .social-facebook:hover,
    .mobile-menu-social .social-facebook:focus-visible { color: #1877f2 !important; }
    .mobile-menu-social .social-youtube:hover,
    .mobile-menu-social .social-youtube:focus-visible { color: #ff0033 !important; }
    .mobile-menu-social .social-spotify:hover,
    .mobile-menu-social .social-spotify:focus-visible { color: #1ed760 !important; }
    .mobile-menu-social .social-apple-music:hover,
    .mobile-menu-social .social-apple-music:focus-visible { color: #fa243c !important; }
    .mobile-menu-social .social-amazon-music:hover,
    .mobile-menu-social .social-amazon-music:focus-visible { color: #25d1da !important; }

    .mobile-menu-social .social-instagram .instagram-brand {
        opacity: 0;
        transition: opacity .22s ease;
    }
    .mobile-menu-social .social-instagram .instagram-mono {
        opacity: 1;
        transition: opacity .22s ease;
    }
    .mobile-menu-social .social-instagram:hover .instagram-brand,
    .mobile-menu-social .social-instagram:focus-visible .instagram-brand { opacity: 1; }
    .mobile-menu-social .social-instagram:hover .instagram-mono,
    .mobile-menu-social .social-instagram:focus-visible .instagram-mono { opacity: 0; }
}

@media (max-width: 380px) {
    .mobile-menu-social {
        gap: 6px;
    }

    .mobile-menu-social .social-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .mobile-menu-social .social-icon svg {
        width: 17px;
        height: 17px;
    }
}

/* =========================================
   NAVIGATION: HAMBURGER AUCH AUF DESKTOP / LAPTOP / IPAD QUER
   ========================================= */
@media (min-width: 921px) {
    .nav {
        position: sticky;
        overflow: visible !important;
    }

    .menu-toggle {
        display: flex !important;
        margin-left: auto;
    }

    .social {
        display: none !important;
    }

    .nav nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: auto;
        z-index: 9999;

        width: min(380px, calc(100vw - 40px));
        margin: 0;
        padding: 18px;

        display: none;
        flex-direction: column;
        gap: 4px;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        background: rgba(7, 18, 37, 0.97);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav nav.open {
        display: flex;
    }

    .nav nav > a,
    .nav nav > .nav-item > a {
        width: 100%;
        padding: 11px 12px;
    }

    .nav-item {
        display: block;
        width: 100%;
    }

    .nav-menu-link {
        width: 100%;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        width: auto;
        margin: 4px 0 2px 14px;
        padding: 4px 0 4px 10px;

        border: 0;
        border-left: 1px solid rgba(255, 255, 255, .10);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .submenu::before {
        display: none;
    }

    .submenu a {
        padding: 9px 12px !important;
        font-size: 12px;
    }

    .submenu-caret {
        display: none;
    }

    .mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .mobile-menu-social .social-icon {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        flex: 0 0 34px;
        padding: 0 !important;
        border-radius: 10px;
        color: #dfe6f5 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-menu-social .social-icon svg {
        width: 19px;
        height: 19px;
        display: block;
    }

    .mobile-menu-social .social-icon:hover,
    .mobile-menu-social .social-icon:focus-visible {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.055) !important;
    }

    .mobile-menu-social .social-facebook:hover,
    .mobile-menu-social .social-facebook:focus-visible { color: #1877f2 !important; }
    .mobile-menu-social .social-youtube:hover,
    .mobile-menu-social .social-youtube:focus-visible { color: #ff0033 !important; }
    .mobile-menu-social .social-spotify:hover,
    .mobile-menu-social .social-spotify:focus-visible { color: #1ed760 !important; }
    .mobile-menu-social .social-apple-music:hover,
    .mobile-menu-social .social-apple-music:focus-visible { color: #fa243c !important; }
    .mobile-menu-social .social-amazon-music:hover,
    .mobile-menu-social .social-amazon-music:focus-visible { color: #25d1da !important; }

    .mobile-menu-social .social-instagram .instagram-brand {
        opacity: 0;
        transition: opacity .22s ease;
    }

    .mobile-menu-social .social-instagram .instagram-mono {
        opacity: 1;
        transition: opacity .22s ease;
    }

    .mobile-menu-social .social-instagram:hover .instagram-brand,
    .mobile-menu-social .social-instagram:focus-visible .instagram-brand { opacity: 1; }

    .mobile-menu-social .social-instagram:hover .instagram-mono,
    .mobile-menu-social .social-instagram:focus-visible .instagram-mono { opacity: 0; }
}

/* =========================================
   DESKTOP / LAPTOP / IPAD QUER:
   SOCIAL-ICONS SICHTBAR, HAMBURGER GANZ RECHTS
   ========================================= */
@media (min-width: 921px) {
    .nav .logo {
        order: 1;
    }

    .nav .social {
        order: 2;
        display: flex !important;
        align-items: center;
        gap: 7px;
        margin-left: auto;
    }

    .nav .social .social-icon {
        width: 34px;
        height: 34px;
    }

    .nav .social .social-icon svg {
        width: 19px;
        height: 19px;
    }

    .nav .menu-toggle {
        order: 3;
        display: flex !important;
        margin-left: 10px !important;
        flex: 0 0 42px;
    }

    .nav nav {
        order: 4;
    }
}

/* =========================================
   DARK / LIGHT MODE
   Standard: Dark. Light wird per data-theme gesetzt.
   ========================================= */

:root {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;
    --bg: #f3f6fb;
    --panel: rgba(255, 255, 255, 0.76);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --line: rgba(27, 42, 67, 0.14);
    --line-soft: rgba(27, 42, 67, 0.09);
    --text: #111827;
    --muted: #66758d;
    --accent: #5d50e6;
    --accent-2: #7c50e9;
    --shadow: 0 22px 70px rgba(35, 48, 72, 0.13);
}

body,
.glass,
.nav nav,
.submenu,
.contact-form,
.contact-info-card,
.booking-cta,
.cookie-consent-card,
.theme-toggle {
    transition: background-color .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* Theme-Schalter */
.theme-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    color: #e5ebf8;
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.theme-toggle:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(110, 99, 255, 0.25);
}

.theme-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon-moon {
    display: none;
}

html[data-theme="light"] .theme-icon-sun {
    display: none;
}

html[data-theme="light"] .theme-icon-moon {
    display: block;
}

.nav .theme-toggle {
    order: 3;
    margin-left: 3px;
}

.nav .menu-toggle {
    order: 4;
    margin-left: 3px !important;
}

.nav nav {
    order: 5;
}

/* Light: Grundflaechen */
html[data-theme="light"] body {
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(98, 122, 224, 0.16), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(163, 112, 214, 0.14), transparent 28%),
        linear-gradient(150deg, #f8faff, #eef3fb 55%, #f7f9fd);
}

html[data-theme="light"] .a1 {
    background: #9eb7ff;
    opacity: .24;
}

html[data-theme="light"] .a2 {
    background: #d2a8ef;
    opacity: .22;
}

html[data-theme="light"] .a3 {
    background: #a9c3ff;
    opacity: .20;
}

html[data-theme="light"] .glass:not(.hero) {
    background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(245, 248, 255, .76));
    border-color: var(--line);
    box-shadow: var(--shadow);
}

html[data-theme="light"] .theme-toggle {
    color: #27344b;
    border-color: rgba(24, 39, 64, .12);
    background: rgba(31, 45, 70, .055);
}

html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .theme-toggle:focus-visible {
    color: #111827;
    border-color: rgba(24, 39, 64, .18);
    background: rgba(31, 45, 70, .095);
}

/* Navigation */
html[data-theme="light"] .nav nav {
    border-color: rgba(30, 44, 68, .12);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 22px 55px rgba(42, 56, 82, .14);
}

html[data-theme="light"] .nav nav > a,
html[data-theme="light"] .nav nav > .nav-item > a,
html[data-theme="light"] .nav nav > a:first-child {
    color: #344159 !important;
}

html[data-theme="light"] .nav nav > a:hover,
html[data-theme="light"] .nav nav > a:focus-visible,
html[data-theme="light"] .nav nav > .nav-item > a:hover,
html[data-theme="light"] .nav nav > .nav-item > a:focus-visible,
html[data-theme="light"] .has-submenu:hover > .nav-menu-link,
html[data-theme="light"] .has-submenu:focus-within > .nav-menu-link,
html[data-theme="light"] .submenu a:hover,
html[data-theme="light"] .submenu a:focus-visible {
    color: #5d50e6 !important;
}

html[data-theme="light"] .submenu {
    border-color: rgba(30, 44, 68, .12);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 45px rgba(42, 56, 82, .14);
}

html[data-theme="light"] .submenu a {
    color: #4b5870 !important;
}

html[data-theme="light"] .menu-toggle {
    color: #202b3d;
}

html[data-theme="light"] .social a,
html[data-theme="light"] .mobile-menu-social .social-icon {
    color: #49566c !important;
}

html[data-theme="light"] .social a:hover,
html[data-theme="light"] .mobile-menu-social .social-icon:hover,
html[data-theme="light"] .mobile-menu-social .social-icon:focus-visible {
    background: rgba(26, 40, 65, .06) !important;
}

html[data-theme="light"] .mobile-menu-social {
    border-top-color: rgba(30, 44, 68, .10);
}

/* Hero bleibt als kontrastreiche Bildflaeche bewusst dunkel */
html[data-theme="light"] .hero {
    color: #f7f9ff;
    box-shadow: 0 24px 60px rgba(32, 45, 70, .18);
}

html[data-theme="light"] .hero .badge,
html[data-theme="light"] .hero .btn.ghost,
html[data-theme="light"] .hero .hero-stat {
    color: #eef3ff;
    border-color: rgba(255, 255, 255, .18);
}

html[data-theme="light"] .hero .btn.ghost {
    background: rgba(6, 14, 29, .48);
}

html[data-theme="light"] .hero p {
    color: #d8e0ef;
}

/* Inhalt */
html[data-theme="light"] .section-link,
html[data-theme="light"] .instagram-profile-link,
html[data-theme="light"] .contact-kicker,
html[data-theme="light"] .contact-info-label,
html[data-theme="light"] .cookie-consent-links a,
html[data-theme="light"] .cookie-settings-back,
html[data-theme="light"] .cookie-inline-settings,
html[data-theme="light"] .footer-cookie-settings,
html[data-theme="light"] .contact-consent a {
    color: #5d50e6 !important;
}

html[data-theme="light"] .event-date,
html[data-theme="light"] .track-title,
html[data-theme="light"] .radio-block-head strong,
html[data-theme="light"] .radio-title,
html[data-theme="light"] .band-member h3,
html[data-theme="light"] .contact-info-card strong,
html[data-theme="light"] .booking-cta > span {
    color: #172033;
}

html[data-theme="light"] .event-title,
html[data-theme="light"] .about-grid p,
html[data-theme="light"] .contact-info-list a,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .social-buttons a,
html[data-theme="light"] .footer-cookie-settings {
    color: #344159 !important;
}

html[data-theme="light"] .event-summary:hover .event-title,
html[data-theme="light"] .event-summary:focus-visible .event-title,
html[data-theme="light"] .events-toggle:hover,
html[data-theme="light"] .tracks-toggle:hover {
    color: #5d50e6;
}

html[data-theme="light"] .event-date span,
html[data-theme="light"] .event-details,
html[data-theme="light"] .event-organizer,
html[data-theme="light"] .muted,
html[data-theme="light"] .empty,
html[data-theme="light"] .social-strip p,
html[data-theme="light"] .contact-heading p,
html[data-theme="light"] .contact-info-list,
html[data-theme="light"] .booking-cta p,
html[data-theme="light"] .contact-consent,
html[data-theme="light"] .events-toggle,
html[data-theme="light"] .tracks-toggle,
html[data-theme="light"] .footer,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .instagram-feed-empty,
html[data-theme="light"] .instagram-consent-note {
    color: #66758d;
}

html[data-theme="light"] .radio-icon,
html[data-theme="light"] .social-buttons a,
html[data-theme="light"] .contact-info-card,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .booking-cta,
html[data-theme="light"] .instagram-feed-item {
    border-color: rgba(28, 43, 67, .10);
    background-color: rgba(255, 255, 255, .48);
}

html[data-theme="light"] .radio-icon {
    color: #344159;
    background: rgba(32, 47, 73, .045);
}

html[data-theme="light"] .social-buttons a:hover {
    background: rgba(31, 45, 70, .07);
}

html[data-theme="light"] .event-list,
html[data-theme="light"] .track-list {
    scrollbar-color: rgba(36, 50, 75, .22) transparent;
}

html[data-theme="light"] .event-list::-webkit-scrollbar-thumb,
html[data-theme="light"] .track-list::-webkit-scrollbar-thumb {
    background: rgba(36, 50, 75, .18);
}

html[data-theme="light"] .event-list::-webkit-scrollbar-thumb:hover,
html[data-theme="light"] .track-list::-webkit-scrollbar-thumb:hover {
    background: rgba(36, 50, 75, .28);
}

html[data-theme="light"] .gallery img,
html[data-theme="light"] .band-member img,
html[data-theme="light"] .gallery-slider-track img {
    border-color: rgba(28, 43, 67, .11);
    box-shadow: 0 14px 30px rgba(35, 48, 72, .10);
}

html[data-theme="light"] .gallery-arrow {
    border-color: rgba(74, 62, 190, .18);
}

/* Formulare */
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .booking-field input,
html[data-theme="light"] .booking-field textarea,
html[data-theme="light"] .booking-field select {
    color: #172033;
    border-color: rgba(28, 43, 67, .14);
    background: rgba(255, 255, 255, .82);
}

html[data-theme="light"] .contact-form input::placeholder,
html[data-theme="light"] .contact-form textarea::placeholder,
html[data-theme="light"] .booking-field input::placeholder,
html[data-theme="light"] .booking-field textarea::placeholder {
    color: #8490a4;
}

html[data-theme="light"] .booking-field input[type="date"],
html[data-theme="light"] .booking-field input[type="time"] {
    color-scheme: light;
}

/* Kontakt-Karte */
html[data-theme="light"] .booking-cta {
    background:
        linear-gradient(135deg, rgba(104, 87, 255, .08), rgba(155, 76, 255, .04)),
        rgba(255, 255, 255, .56);
}

/* Cookie-Dialog */
html[data-theme="light"] .cookie-consent-backdrop {
    background: rgba(38, 49, 68, .30);
}

html[data-theme="light"] .cookie-consent-card {
    color: #172033;
    border: 1px solid rgba(28, 43, 67, .11);
    background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(243, 247, 253, .99));
    box-shadow: 0 28px 90px rgba(35, 48, 72, .23);
}

html[data-theme="light"] .cookie-consent-card p,
html[data-theme="light"] .cookie-category small,
html[data-theme="light"] .instagram-consent-note {
    color: #66758d;
}

html[data-theme="light"] .cookie-consent-close {
    color: #3d4960;
}

html[data-theme="light"] .cookie-consent-close:hover {
    color: #111827;
    background: rgba(28, 43, 67, .06);
}

html[data-theme="light"] .cookie-category {
    border-color: rgba(28, 43, 67, .10);
    background: rgba(235, 240, 248, .60);
}

html[data-theme="light"] .cookie-switch {
    background: #c8d0dc;
    box-shadow: inset 0 0 0 1px rgba(28, 43, 67, .10);
}

html[data-theme="light"] .cookie-switch::after {
    background: #fff;
    box-shadow: 0 1px 4px rgba(35, 48, 72, .18);
}

/* Rechtliche Seiten */
html[data-theme="light"] .legal-hero,
html[data-theme="light"] .privacy-hero,
html[data-theme="light"] .press-hero {
    border-bottom-color: rgba(28, 43, 67, .09);
}

html[data-theme="light"] .legal-title,
html[data-theme="light"] .privacy-title,
html[data-theme="light"] .press-title,
html[data-theme="light"] .booking-page-title,
html[data-theme="light"] .legal-card h2,
html[data-theme="light"] .privacy-card h2,
html[data-theme="light"] .privacy-card h3,
html[data-theme="light"] .press-card h2,
html[data-theme="light"] .booking-group h2,
html[data-theme="light"] .press-file-name,
html[data-theme="light"] .legal-card strong,
html[data-theme="light"] .privacy-card strong {
    color: #172033;
}

html[data-theme="light"] .legal-kicker,
html[data-theme="light"] .legal-card-kicker,
html[data-theme="light"] .privacy-kicker,
html[data-theme="light"] .privacy-card-kicker,
html[data-theme="light"] .press-kicker,
html[data-theme="light"] .press-card-kicker,
html[data-theme="light"] .booking-page-kicker,
html[data-theme="light"] .booking-group-kicker {
    color: #5d50e6;
}

html[data-theme="light"] .legal-lead,
html[data-theme="light"] .legal-card p,
html[data-theme="light"] .legal-card address,
html[data-theme="light"] .legal-card li,
html[data-theme="light"] .privacy-lead,
html[data-theme="light"] .privacy-card p,
html[data-theme="light"] .privacy-card address,
html[data-theme="light"] .privacy-card li,
html[data-theme="light"] .press-lead,
html[data-theme="light"] .press-card-description,
html[data-theme="light"] .press-note,
html[data-theme="light"] .booking-page-lead,
html[data-theme="light"] .booking-field > span,
html[data-theme="light"] .booking-choice-title,
html[data-theme="light"] .booking-consent,
html[data-theme="light"] .booking-required-note {
    color: #66758d;
}

html[data-theme="light"] .legal-card,
html[data-theme="light"] .privacy-card,
html[data-theme="light"] .press-card,
html[data-theme="light"] .booking-group {
    border-color: rgba(28, 43, 67, .10);
    background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(242, 246, 252, .58));
}

html[data-theme="light"] .legal-card-icon,
html[data-theme="light"] .privacy-card-icon,
html[data-theme="light"] .press-card-icon {
    color: #5d50e6;
    border-color: rgba(93, 80, 230, .22);
    background: linear-gradient(145deg, rgba(104, 87, 255, .10), rgba(132, 69, 255, .05));
}

html[data-theme="light"] .legal-card a,
html[data-theme="light"] .privacy-card a {
    color: #5145cc;
}

html[data-theme="light"] .legal-meta-row,
html[data-theme="light"] .privacy-meta-row,
html[data-theme="light"] .press-file,
html[data-theme="light"] .press-note,
html[data-theme="light"] .booking-choice {
    border-color: rgba(28, 43, 67, .09);
    background: rgba(241, 245, 251, .75);
}

html[data-theme="light"] .legal-meta-row span:first-child,
html[data-theme="light"] .privacy-meta-row > span:first-child,
html[data-theme="light"] .press-file-meta {
    color: #7a879b;
}

html[data-theme="light"] .legal-meta-row span:last-child,
html[data-theme="light"] .legal-meta-row a,
html[data-theme="light"] .privacy-meta-row > span:last-child,
html[data-theme="light"] .privacy-meta-row > a,
html[data-theme="light"] .privacy-meta-row > div,
html[data-theme="light"] .press-note strong {
    color: #344159;
}

html[data-theme="light"] .privacy-note {
    color: #66758d;
    border-color: rgba(93, 80, 230, .17);
    background: rgba(93, 80, 230, .055);
}

html[data-theme="light"] .booking-choice {
    color: #344159;
}

html[data-theme="light"] .booking-errors {
    color: #7f1d35;
    border-color: rgba(190, 45, 78, .22);
    background: rgba(232, 92, 122, .12);
}

html[data-theme="light"] .booking-client-errors a {
    color: #8f2440;
}

html[data-theme="light"] .booking-consent.has-error {
    background: rgba(232, 92, 122, .08);
}

html[data-theme="light"] .booking-radio span {
    color: #4d5a70;
    border-color: rgba(28, 43, 67, .11);
    background: rgba(255, 255, 255, .62);
}

html[data-theme="light"] .booking-radio input:checked + span {
    color: #fff;
}

html[data-theme="light"] .press-empty {
    color: #77869a;
    border-color: rgba(93, 80, 230, .19);
    background: rgba(240, 244, 251, .64);
}

/* Lightbox bleibt absichtlich dunkel, damit Bilder maximalen Kontrast haben. */

@media (max-width: 920px) {
    .nav .theme-toggle {
        order: initial;
        margin-left: auto;
    }

    .nav .menu-toggle {
        order: initial;
        margin-left: 2px !important;
    }

    html[data-theme="light"] .nav nav {
        background: rgba(255, 255, 255, .98);
    }

    html[data-theme="light"] .submenu {
        background: transparent;
        box-shadow: none;
    }

    html[data-theme="light"] .submenu {
        border-left-color: rgba(28, 43, 67, .10);
    }
}

@media (prefers-reduced-motion: reduce) {
    body,
    .glass,
    .nav nav,
    .submenu,
    .contact-form,
    .contact-info-card,
    .booking-cta,
    .cookie-consent-card,
    .theme-toggle {
        transition: none;
    }
}


/* =========================================
   FINAL: HEADER-LOGO ETWAS GROESSER
   + ICONLEISTE IM GEÖFFNETEN HAMBURGER-MENÜ
   ========================================= */

/* Desktop / Laptop: wieder wie im vorherigen Stand */
@media (min-width: 921px) {
    .logo img {
        width: clamp(170px, 12vw, 210px);
        max-width: 210px;
    }
}

/* Tablet / iPad Hochformat */
@media (max-width: 920px) {
    .logo img {
        width: 165px;
        max-width: 165px;
    }

    /* Die Iconleiste im geöffneten Menü immer sichtbar halten. */
    .nav nav.open .mobile-menu-social {
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }
}

/* Größere iPads im Hochformat können über 920 CSS-Pixel melden. */
@media (min-width: 921px) and (max-width: 1100px) and (orientation: portrait) {
    .nav nav.open .mobile-menu-social {
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }
}

/* Smartphone */
@media (max-width: 600px) {
    .logo img {
        width: 140px;
        max-width: 140px;
    }
}

/* =========================================
   MOBILE: LOGO GROESSER, HEADERHOEHE BLEIBT
   ========================================= */
@media (max-width: 600px) {
    .nav {
        min-height: 0;
    }

    .logo {
        margin-right: 0;
        min-width: 0;
        flex: 0 1 auto;
        overflow: visible;
    }

    .logo img {
        width: 158px !important;
        max-width: 158px !important;
        transform: scale(1.08);
        transform-origin: left center;
    }
}

/* =========================================
   SMARTPHONE QUERFORMAT: MENUE SCROLLBAR + SCHLIESSBAR
   ========================================= */
@media (max-width: 920px) and (orientation: landscape) and (max-height: 600px) {
    /* Hamburger bleibt immer ueber dem geoeffneten Menue anklickbar. */
    .nav .menu-toggle {
        position: relative;
        z-index: 10001;
    }

    /* Das Menue bekommt eine eigene Scrollflaeche statt aus dem Viewport zu laufen. */
    .nav nav {
        top: calc(100% + 8px);
        max-height: calc(100dvh - 92px);
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .nav nav.open {
        display: flex;
    }

    /* Etwas kompakter, damit mehr Menuepunkte direkt sichtbar sind. */
    .nav nav > a,
    .nav nav > .nav-item > a {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .nav nav.open .mobile-menu-social {
        flex: 0 0 auto;
        margin-bottom: 2px;
    }
}

/* =========================================
   LIGHT MODE: HERO OHNE DUNKLEN/BLAUEN FILTER
   ========================================= */
html[data-theme="light"] .hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(255, 255, 255, 0.18) 42%,
            rgba(255, 255, 255, 0) 70%
        ),
        url("../img/Deschawü@Sea.webp");
}

html[data-theme="light"] .hero::after {
    background: linear-gradient(
        180deg,
        transparent 72%,
        rgba(255, 255, 255, 0.10)
    );
}

/* =========================================
   LIGHT MODE: HERO-TEXTE BESSER LESBAR
   ========================================= */
html[data-theme="light"] .hero .badge {
    color: #2f4568;
    border-color: rgba(47, 69, 104, 0.24);
    background: rgba(255, 255, 255, 0.34);
}

html[data-theme="light"] .hero p {
    color: #2f4568;
}
