/* =================COPYRIGHT================= */
/* Entwicklung & Umsetzung                     */
/* (c)2026 Agentur Hundertmarck                */
/* www.hundertmarck.com                        */
/* =========================================== */

:root {
    --blue: #06182f;
    --blue-2: #0b2748;
    --gold: #c9963c;
    --gold-2: #e2bd67;
    --cream: #fff4dc;
    --paper: #f4e5c7;
    --paper-2: #fff8ed;
    --brown: #553014;
    --ink: #182235;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background: var(--blue);
}

a {
    text-decoration: none;
}

.gaudi-nav {
    padding: 14px 0;
    background: rgba(6, 24, 47, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 189, 103, 0.22);
}

.gaudi-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        rgba(201,150,60,0),
        rgba(226,189,103,.85) 15%,
        var(--gold) 50%,
        rgba(226,189,103,.85) 85%,
        rgba(201,150,60,0)
    );

    box-shadow:
        0 0 10px rgba(226,189,103,.35),
        0 1px 6px rgba(226,189,103,.25);

    pointer-events: none;
}

.navbar-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(226, 189, 103, 0.45);
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        display: none;
    }
}

.navbar-brand span {
    font-family: "Cinzel", serif;
    color: var(--gold-2);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        color var(--transition),
        opacity var(--transition);
}

.navbar-nav .nav-link.active {
    color: var(--gold-2);
    font-weight: 700;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible {
    color: rgba(255, 255, 255, 0.82);
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-link.active:focus,
.navbar-nav .nav-link.active:focus-visible {
    color: var(--gold-2);
}

.nav-link:hover {
    color: var(--gold-2);
}

.navbar-toggler {
    padding: .55rem .7rem;
    border: 1px solid rgba(226, 189, 103, .45);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.navbar-toggler:hover {
    border-color: var(--gold-2);
    background: rgba(226, 189, 103, .12);
    box-shadow: 0 0 20px rgba(226, 189, 103, .18);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(226, 189, 103, .2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23e2bd67' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    section[id] {
        scroll-margin-top: 50px;
    }
}

@media (min-width: 992px) {
    section[id] {
        scroll-margin-top: 30px;
    }
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.8rem 1.35rem;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        opacity var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1d1607;
    border: 0;
    box-shadow: 0 14px 35px rgba(201, 150, 60, 0.35);
}

.btn-gold:hover {
    color: #1d1607;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 45px rgba(201, 150, 60, 0.48);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(226, 189, 103, 0.55);
    transform: translateY(-3px) scale(1.02);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding: 120px 0 82px;
    background:
        linear-gradient(180deg, rgba(6, 24, 47, 0.75), rgba(6, 24, 47, 0.88)),
        radial-gradient(circle at 15% 20%, rgba(226, 189, 103, 0.45), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(201, 150, 60, 0.38), transparent 24%),
        url("../img/hero.png") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 211, 104, 0.22), transparent 22%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.55));
    z-index: -2;
}

.hero-lights {
    position: absolute;
    inset: -10%;
    background-image:
        radial-gradient(circle, rgba(255, 232, 163, 0.85) 0 3px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 2px, transparent 3px);
    background-size:
        140px 90px,
        190px 110px;
    opacity: 0.22;
    animation: floatLights 14s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(226, 189, 103, 0.25), transparent 60%);
    filter: blur(12px);
    z-index: -1;
}

@keyframes floatLights {
    from {
        transform: translate3d(-1%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(1%, 1%, 0) scale(1.03);
    }
}

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

/*.hero-logo {
    width: min(230px, 44vw);
    border-radius: 50%;
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(226, 189, 103, 0.35);
    margin-bottom: 22px;
}*/
.hero-logo {
    width: min(600px, 44vw);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: "Cinzel", serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 0.98;
    font-size: clamp(3.2rem, 8vw, 7.3rem);
    text-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
    margin: 0;
}

.hero-subline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    color: var(--cream);
    margin: 20px 0 0;
    margin : auto;
    max-width : 70%;
}

.hero-facts {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-facts .fact {
    text-align: center;
    min-width: 170px;
}

.hero-facts strong {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 6px;
}

.hero-facts span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-facts .divider {
    width: 1px;
    background: linear-gradient(transparent, rgba(226, 189, 103, 0.8), transparent);
}

.hero-social {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.hero-social a {
    color: var(--gold-2);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.hero-social a:hover {
    color: #fff;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px auto 0;
}

.countdown div {
    min-width: 116px;
    padding: 17px 18px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 189, 103, 0.45);
    box-shadow:
        inset 0 0 35px rgba(226, 189, 103, 0.08),
        0 18px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.countdown div:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 189, 103, 0.75);
    box-shadow:
        inset 0 0 35px rgba(226, 189, 103, 0.1),
        0 22px 45px rgba(0, 0, 0, 0.26);
}

.countdown span {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1;
    color: #fff;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}

.countdown small {
    display: block;
    color: var(--gold-2);
    margin-top: 7px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.67rem;
    font-weight: 800;
}

@media (max-width: 575px) {

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

    .countdown div {
        min-width: 0;
        width: 100%;
        padding: 10px 4px;
        border-radius: 12px;
    }

    .countdown span {
        font-size: 1.7rem;
    }

    .countdown small {
        margin-top: 3px;
        font-size: .55rem;
        letter-spacing: .03em;
    }
}

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

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

.artist-ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
    color: #111827;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 4;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.22);
}

.ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: ticker 55s linear infinite;
    font-family: "Cinzel", serif;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ticker-track span {
    display: block;
    padding: 14px 0;
    flex-shrink: 0;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 92px 0;
    position: relative;
}

.section-dark {
    background:
        radial-gradient(circle at 20% 15%, rgba(226, 189, 103, 0.12), transparent 28%),
        linear-gradient(180deg, var(--blue), #041020);
    color: #fff;
}

.section-paper {
    background:
        radial-gradient(circle at 15% 10%, rgba(201, 150, 60, 0.13), transparent 24%),
        linear-gradient(180deg, var(--paper-2), var(--paper));
}

.section-royal {
    background:
        radial-gradient(circle at 85% 15%, rgba(226, 189, 103, 0.18), transparent 26%),
        linear-gradient(135deg, #102844, #06182f);
    color: #fff;
}

.section-head {
    max-width: 770px;
    margin: 0 auto 46px;
}

.section h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 16px;
}

.section-head p,
.section .lead {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    color: inherit;
    opacity: 0.86;
}

.day-card {
    min-height: 250px;
    border-radius: 30px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 189, 103, 0.32);
    background:
        linear-gradient(180deg, rgba(6, 24, 47, 0.6), rgba(6, 24, 47, 0.9)),
        radial-gradient(circle at 15% 12%, rgba(226, 189, 103, 0.3), transparent 30%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.day-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 189, 103, 0.7);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.day-card span {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.day-card h3 {
    font-family: "Cinzel", serif;
    color: #fff;
    margin: 15px 0 10px;
    font-weight: 800;
}

.day-card p {
    color: rgba(255, 255, 255, 0.78);
}

.artist-day-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.artist-day-intro > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: 100%;

    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 800;

    margin-bottom: 10px;
}

.artist-day-intro > span::before,
.artist-day-intro > span::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 189, 103, 0.75));
}

.artist-day-intro > span::after {
    transform: scaleX(-1);
}

@media (max-width: 575px) {
    .artist-day-intro > span::before,
    .artist-day-intro > span::after {
        max-width: 80px;
    }
}

.artist-day-intro h3 {
    font-family: "Cinzel", serif;

    color: #fff;

    font-size: clamp(1.8rem, 3vw, 2.5rem);

    margin-bottom: 14px;

    font-weight: 700;
}

.artist-day-intro p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1.05rem;

    line-height: 1.8;

    margin: 0;
}

.artist-card {
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(226, 189, 103, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226, 189, 103, 0.7);
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(226, 189, 103, 0.12);
}

.artist-grid > div {
    display: flex;
}

.artist-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.artist-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #050d18;
}

.artist-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-card div {
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(6, 24, 47, 0.92), rgba(4, 16, 32, 0.98));
}

.artist-card small {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.67rem;
}

.artist-card h3 {
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    margin: 6px 0 0;
    font-weight: 800;
}

.dj-feature {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(226, 189, 103, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.dj-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 189, 103, 0.7);
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(226, 189, 103, 0.12);
}

.dj-feature img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dj-feature-content {
    padding: 42px;
}

.dj-feature-content small {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
}

.dj-feature-content h3 {
    margin: 8px 0 14px;
    color: #fff;
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.dj-feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .dj-feature img {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .dj-feature-content {
        padding: 26px;
    }
}

.program-panel,
.ticket-day,
.price-card,
.location-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(85, 48, 20, 0.12);
    box-shadow: 0 24px 65px rgba(85, 48, 20, 0.14);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.program-panel:hover,
.ticket-day:hover,
.price-card:hover,
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(85, 48, 20, 0.2);
}

.program-panel {
    padding: 34px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-panel h3,
.ticket-day h3 {
    font-family: "Cinzel", serif;
    font-weight: 800;
    color: var(--blue);
}

.program-panel ul {
    flex: 1;
    padding: 0;
    margin: 20px 0 24px;
    list-style: none;
}

.program-panel li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-top: 1px solid rgba(85, 48, 20, 0.13);
    padding: 17px 0;
}

.program-panel li strong {
    color: var(--blue);
    flex: 1;
}

.program-panel li span {
    color: #7a5c36;
    text-align: right;
    white-space: nowrap;
    margin-left: 20px;
}

.program-panel .btn {
    align-self: flex-start;
    margin-top: auto;
}

.program-timeline {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(85, 48, 20, 0.12);
    box-shadow: 0 24px 65px rgba(85, 48, 20, 0.14);
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.program-timeline:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(85, 48, 20, 0.2);
}

.program-timeline-head {
    margin-bottom: 22px;
}

.program-timeline-head span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.program-timeline-head h3 {
    margin: 0;
    color: var(--blue);
    font-family: "Cinzel", serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 800;
}

.timeline-list {
    position: relative;
    flex: 1;
}

.timeline-list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 72px;
    width: 1px;
    background: rgba(201, 150, 60, 0.35);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 26px;
    padding: 9px 0 9px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 67px;
    top: 15px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--paper-2);
    border: 2px solid var(--gold);
    z-index: 2;
}

.timeline-item.highlight::before {
    background: var(--gold);
}

.timeline-item time {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.timeline-item > div {
    min-width: 0;
}

.timeline-item strong {
    display: block;
    color: var(--blue);
    font-family: "Cinzel", serif;
    font-size: 0.9rem;
    line-height: 1.35;
}

.timeline-item small {
    display: block;
    margin-top: 3px;
    color: #765c3c;
    font-size: 0.78rem;
    line-height: 1.4;
}

.program-timeline .btn {
    align-self: flex-start;
    margin-top: 22px;
}

@media (max-width: 575px) {
    .program-timeline {
        padding: 22px 18px;
    }

    .program-timeline-head {
        margin-bottom: 16px;
    }

    .timeline-list::before {
        left: 56px;
    }

    .timeline-item {
        grid-template-columns: 46px 1fr;
        gap: 22px;
        padding: 8px 0;
    }

    .timeline-item::before {
        left: 51px;
        top: 14px;
        width: 10px;
        height: 10px;
    }

    .timeline-item time {
        font-size: 0.74rem;
    }

    .timeline-item strong {
        font-size: 0.84rem;
    }

    .timeline-item small {
        font-size: 0.72rem;
    }

    .program-timeline .btn {
        width: 100%;
        margin-top: 18px;
    }
}

.royal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 26px 0;
}

.royal-grid div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(226, 189, 103, 0.28);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.royal-grid div:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 189, 103, 0.65);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.royal-grid small {
    display: block;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.royal-grid strong {
    display: block;
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
}

.royal-grid span {
    color: rgba(255, 255, 255, 0.74);
}

.royal-poster {
    border-radius: 34px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(226, 189, 103, 0.6), rgba(255, 255, 255, 0.12), rgba(226, 189, 103, 0.45));
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.royal-poster:hover {
    transform: translateY(-6px);
    box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42);
}

.royal-poster img {
    width: 100%;
    border-radius: 26px;
    display: block;
    background: var(--paper);
}

.section-royal {
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        linear-gradient(rgba(6, 24, 47, 0.82), rgba(6, 24, 47, 0.9)),
        url("../img/dirndl-bg.png") center center / cover no-repeat;
}

.section-royal::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 25%, rgba(226, 189, 103, 0.18), transparent 30%),
        radial-gradient(circle at 80% 15%, rgba(226, 189, 103, 0.12), transparent 25%);

    pointer-events: none;
}

.section-royal > .container {
    position: relative;
    z-index: 2;
}

.ticket-day {
    padding: 34px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ticket-day .btn {
    margin-top: auto;
}

.price-card {
    display: block;
    height: 100%;
    padding: 28px;
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.price-card:hover,
.price-card:focus,
.price-card:active,
.price-card:visited {
    color: inherit;
    text-decoration: none;
}

.price-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.price-card::before,
.price-card::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--paper);
    top: 50%;
    transform: translateY(-50%);
}

.price-card::before {
    left: -17px;
}

.price-card::after {
    right: -17px;
}

.price-card.highlight {
    background: linear-gradient(180deg, #fffaf0, #f8df9e);
    border-color: rgba(201, 150, 60, 0.5);
}

.price-card span {
    color: var(--brown);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.price-card h3 {
    color: var(--blue);
    font-size: 2.65rem;
    font-weight: 800;
    margin: 7px 0 4px;
}

.price-card ul {
    margin: 18px 0 0;
    padding-left: 19px;
}

.price-card li {
    margin: 6px 0;
}

.price-card-row,
.ticket-day-row {
    position: relative;
}

.price-card-row {
    z-index: 1;
}

.ticket-day-row {
    z-index: 2;
}

.ticket-day {
    position: relative;
    z-index: 1;
}

.ticket-note {
    padding: 22px 26px;
    border-radius: 22px;
    background: rgba(6, 24, 47, 0.08);
    border: 1px solid rgba(6, 24, 47, 0.12);
    color: #5d4b34;
}

#ticket-sale {
    display: block;
    scroll-margin-top: 100px;
    height: 0;
}

.location-section {
    overflow: hidden;
}

.location-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -220px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 189, 103, 0.15), transparent 68%);
    pointer-events: none;
}

.location-intro {
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    line-height: 1.6;
}

.location-address {
    margin-bottom: 32px;
    padding-left: 22px;
    border-left: 2px solid var(--gold);
}

.location-address span,
.location-address strong {
    display: block;
}

.location-address span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-address strong {
    margin-top: 5px;
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 1.55rem;
}

.venue-panel {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(226, 189, 103, 0.28);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
}

.venue-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.venue-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-row span {
    color: rgba(255, 255, 255, 0.62);
}

.venue-row strong {
    color: var(--gold-2);
    text-align: right;
}

.venue-footer {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.venue-footer a {
    color: var(--gold-2);
    text-decoration: none;
    transition: color var(--transition);
}

.venue-footer a:hover {
    color: #fff;
}

.venue-footer a:visited,
.venue-footer a:active {
    color: var(--gold-2);
}

@media (max-width: 767px) {
    .venue-panel {
        padding: 26px;
    }

    .venue-row {
        display: block;
    }

    .venue-row strong {
        display: block;
        margin-top: 5px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .location-highlights {
        grid-template-columns: 1fr;
    }
}

.partner-section {
    overflow: hidden;
}

.partner-grid {
    align-items: stretch;
}

.partner-grid > div {
    display: flex;
}

.partner-card {
    width: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(85, 48, 20, 0.12);
    box-shadow: 0 24px 65px rgba(85, 48, 20, 0.14);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 150, 60, 0.45);
    box-shadow: 0 34px 80px rgba(85, 48, 20, 0.2);
}

.partner-card img {
    display: block;
    width: 100%;
    max-width: 500px;
    max-height: 145px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .partner-card {
        min-height: 145px;
        padding: 24px;
        border-radius: 22px;
    }

    .partner-card img {
        max-height: 105px;
    }
}

.footer {
    background: #030a14;
    color: rgba(255, 255, 255, 0.72);
    padding: 28px 0;
}

.footer a {
    color: var(--gold-2);
    transition:
        color var(--transition),
        opacity var(--transition);
}

.footer a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .navbar-collapse .navbar-nav {
        margin-top: 12px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(6, 24, 47, 0.96);

        align-items: center;
        text-align: center;
    }

    .navbar-collapse .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-collapse .nav-link {
        display: block;
        width: 100%;
        padding: 0.7rem 1rem;
        text-align: center;
    }

    .navbar-collapse .nav-item.ms-lg-3 {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {

    .hero {
        padding-top: 110px;
    }

    .program-panel li {
        display: block;
    }

    .program-panel li span {
        display: block;
        text-align: left;
        margin-top: 4px;
    }

    .hero-facts {
        justify-content: center;
        gap: 20px;
    }

    .hero-facts .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(226, 189, 103, 0.8), transparent);
        flex-basis: 100%;
    }

    .hero-facts .fact {
        width: calc(50% - 20px);
    }
}

@media (max-width: 575px) {

    .hero-logo {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .hero-facts {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-facts .divider {
        display: block;
        flex: 0 0 1px;
        align-self: stretch;
        height: 1px;
        width: auto;
        margin: 2px 0;
        background: linear-gradient(90deg, transparent, rgba(226, 189, 103, 0.8), transparent);
    }

    .hero-facts .fact {
        width: 100%;
        max-width: 320px;
    }
}

/* Impressum + Datenschutz */

.legal-page {
    min-height: 100vh;
    background: var(--blue);
}

.legal-main {
    min-height: calc(100vh - 150px);
    background: #f7f2e8;
}

.legal-hero {
    padding: 130px 0 40px;
    background:
        linear-gradient(
            180deg,
            var(--blue),
            #0b2142
        );
}

.legal-heading {
    color: #fff;
}

.legal-heading .section-kicker {
    display: block;
    margin-bottom: 12px;
}

.legal-heading h1 {
    margin: 0;
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

.legal-content {
    position: relative;
    padding-bottom: 80px;
    background: #f7f2e8;
}

.legal-card {
    max-width: 960px;
    position: relative;
    margin: 65px auto 0;
    padding: 55px 60px;
    background: #fdfbf7;
    border: 1px solid rgba(201, 150, 60, 0.22);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(6, 24, 47, 0.12);
    color: #243147;
}

.legal-card h2 {
    margin: 2.5rem 0 1rem;
    color: var(--blue);
    font-family: "Cinzel", serif;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-weight: 700;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    margin: 2rem 0 0.8rem;
    color: var(--blue);
    font-size: 1.15rem;
    font-weight: 700;
}

.legal-card p,
.legal-card li {
    line-height: 1.8;
}

.legal-card ul,
.legal-card ol {
    padding-left: 1.4rem;
}

.legal-card a {
    color: #9c6d1c;
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-card a:hover {
    color: var(--blue);
}

@media (max-width: 991.98px) {
    .legal-hero {
        padding: 125px 0 45px;
    }

    .legal-content {
        padding-bottom: 60px;
    }

    .legal-card {
        margin-top: 60px;
        padding: 40px;
    }
}

@media (max-width: 575.98px) {
    .legal-hero {
        padding: 115px 0 40px;
    }

    .legal-card {
        margin-top: 50px;
        padding: 28px 22px;
        border-radius: 18px;
    }

    .legal-card p,
    .legal-card li {
        line-height: 1.7;
    }
}