/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #160808;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    font-size: larger;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: #000;
    background: #fff;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.skip-link:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

.modal-open {
    overflow: hidden;
}

/* Site footer */
.site-footer {
    position: relative;
    margin-top: auto;
    padding: 1rem clamp(1.25rem, 5vw, 4.5rem);
    color: rgba(255, 255, 255, 0.66);
    background: rgba(8, 5, 5, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
    z-index: 1;
}

.site-footer__inner {
    width: min(1120px, 100%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.72rem;
}

.site-footer__copyright {
    white-space: nowrap;
}

.site-footer__links,
.site-footer__credit {
    display: flex;
    align-items: center;
}

.site-footer__links {
    gap: 1.4rem;
}

.site-footer__credit {
    gap: 0.4rem;
    white-space: nowrap;
}

.site-footer .acme-link {
    display: inline-flex;
    opacity: 0.68;
    transition: opacity 160ms ease;
}

.site-footer .acme-link:hover,
.site-footer .acme-link:focus-visible {
    opacity: 1;
}

.site-footer .acme-logo {
    display: block;
    width: 54px;
    height: auto;
}

.site-footer .impressum-button {
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 0;
    font: inherit;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease;
}

.site-footer .impressum-button:hover,
.site-footer .impressum-button:focus-visible {
    color: white;
    background: transparent;
    border-color: currentColor;
    outline: none;
}

@media (max-width: 560px) {
    .site-footer {
        padding-block: 1.1rem;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    .site-footer__links {
        width: 100%;
        justify-content: space-between;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/wall-texture.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
    transform: rotate(0deg);
}

body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('../images/logo-mark.png') no-repeat center center;
    background-size: 50%;
    width: 50vw;
    height: 50vw;
    opacity: 0.4;
    z-index: -1;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.language-switcher {
    align-items: center;
    display: flex;
    gap: 0.25rem;
    position: absolute;
    right: var(--page-gutter);
    top: 0.75rem;
    z-index: 2;
}

.language-switcher button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    opacity: 0.55;
    padding: 0.35rem 0.2rem;
}

.language-switcher button[aria-pressed="true"] {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

@media (max-width: 768px) {
    .language-switcher {
        right: calc(var(--page-gutter) + 3.5rem);
        top: 1.15rem;
    }
}

.title-image {
    max-height: 130px;
    width: auto;
    object-fit: contain;
    margin: auto;
}
.normal-text {
    transform: none;
    opacity: 1; /* Reset any changes made by the hinge animation */
  }
.hamburger {
    display: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: transparent;
    border: 0;
}

nav {
    margin-top: 1rem;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.menu li {
    margin: 0;
}

.NONAZIS {
    top: -18%;
    right: 60%;
    position: absolute;
    opacity: 70%;
    z-index: -1;
    scale: 0.2;
  }

.menu a {
    color: white;
    text-decoration: none;
}
.menu a.is-active {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}
.menu li:hover {
    text-decoration: underline; /* Add underline on hover */
    transform: scale(1.05); /* Subtly grow the item */
}

main {
    padding: 40px;
    flex: 1;
    text-align: center;
    z-index: 1; /* Ensures text stays above the background */
}

main > p {
    width: min(760px, 100%);
    margin: 0 auto 1rem;
    line-height: 1.65;
}

main > h1 {
    width: min(900px, 100%);
    margin: 2.5rem auto 1.5rem;
    line-height: 1.15;
    text-wrap: balance;
}

.about-copy {
    width: min(760px, 100%);
    margin: 3rem auto;
}

.about-copy h1 {
    margin: 0 0 1.5rem;
}

.about-copy p {
    margin: 0 0 1rem;
    line-height: 1.65;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.venue-gallery {
    width: min(1180px, calc(100vw - 48px));
    margin: clamp(4rem, 9vw, 8rem) auto;
    text-align: left;
}

.venue-gallery__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.4rem;
}

.venue-gallery__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.venue-gallery h2 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.8rem);
    line-height: 0.95;
    text-align: right;
    text-wrap: balance;
}

.venue-carousel {
    outline: none;
}

.venue-carousel:focus-visible .venue-carousel__viewport {
    outline: 2px solid white;
    outline-offset: 4px;
}

.venue-carousel__viewport {
    overflow: hidden;
    background: #080606;
}

.venue-carousel__track {
    display: flex;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.venue-carousel__slide {
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.venue-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.venue-carousel__slide[aria-hidden="false"] img {
    transform: scale(1);
}

.venue-carousel__controls {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.venue-carousel__arrow,
.venue-carousel__dot {
    color: white;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.venue-carousel__arrow {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.venue-carousel__arrow:hover,
.venue-carousel__arrow:focus-visible {
    color: #090606;
    background: white;
    outline: none;
    transform: scale(1.06);
}

.venue-carousel__status {
    margin: 0;
    min-width: 4.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.venue-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.venue-carousel__dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    transition: background-color 180ms ease, transform 180ms ease;
}

.venue-carousel__dot:hover,
.venue-carousel__dot:focus-visible {
    outline: none;
    transform: scale(1.5);
}

.venue-carousel__dot.is-active {
    background: white;
    transform: scale(1.35);
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    z-index: 1;
}

.impressum-button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.impressum-button:hover {
    background-color: white;
    color: black;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    color: black;
}

.modal-content .close {
    color: black;
    float: right;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .close:focus-visible {
    outline-color: black;
}

.instagram-embed {
    display: block;
    margin: 0 auto;
    width: 40%; 
    max-width: 90vw; 
    height: 800px; 
    overflow: hidden; 
    border: none; 
    padding: 0;
}

.instagram-consent {
    width: min(520px, 100%);
    min-height: 390px;
    margin: 2rem auto;
    padding: clamp(2rem, 6vw, 4rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.instagram-consent__mark {
    font-size: 3.5rem;
    line-height: 1;
}

.instagram-consent h2,
.instagram-consent p {
    margin: 0;
}

.instagram-consent p {
    max-width: 42rem;
    line-height: 1.55;
}

.instagram-consent__load {
    margin-top: 0.5rem;
    padding: 0.75rem 1.15rem;
    color: black;
    background: white;
    border: 1px solid white;
    border-radius: 4px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.instagram-consent__load:hover,
.instagram-consent__load:focus-visible {
    color: white;
    background: transparent;
}

.instagram-consent__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.facebook-container {
    display: block;
    margin: 0 auto; 
    width: 27%;
    max-width: 90vw; 
    height: 800px; 
    overflow: hidden; 
    border: none; 
    padding: 0;
}
/* General link styling */
a {
    text-decoration: underline; /* Always underline links */
    color: inherit; /* Inherit text color from parent (no color change) */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Optional: Styling for hover state (if needed) */
a:hover {
    text-decoration: underline; /* Keep underline on hover */
    color: inherit; /* Maintain the same color */
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between the title and logo */
    margin-bottom: 20px;
}

.event-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: inherit;
}

.event-link:focus-visible {
    outline: 2px solid white;
    outline-offset: 6px;
}

.logo-header h1 {

    margin: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 150px; /* Adjust the width as needed */
    height: auto;
    border-radius: 10px; /* Optional for rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}
.logo2{
    width: 100px; /* Adjust the width as needed */
    height: auto;
    border-radius: 10px; /* Optional for rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}
.logo3{
    width: 500px; /* Adjust the width as needed */
    max-width: 80vw;
    height: auto;
    border-radius: 10px; /* Optional for rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}
/* Responsive styles */
@media (max-width: 768px) {
    main {
        padding-inline: 20px;
    }

    .venue-gallery {
        width: 100%;
        margin-block: 4rem;
    }

    .venue-gallery__intro {
        align-items: start;
        flex-direction: column;
        gap: 0.65rem;
    }

    .venue-gallery h2 {
        text-align: left;
    }

    .venue-carousel__slide {
        aspect-ratio: 4 / 3;
    }

    .venue-carousel__controls {
        grid-template-columns: auto 1fr auto;
    }

    .venue-carousel__dots {
        display: none;
    }

    .venue-carousel__status {
        text-align: center;
    }

    .instagram-consent {
        margin-inline: auto;
        padding-inline: clamp(1.25rem, 6vw, 2rem);
    }

    body::after {
        content: "";
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url('../images/logo-mark.png') no-repeat center center;
        background-size: 70%;
        width: 70vw;
        height: 70vw;
        opacity: 0.2;
        z-index: -1;
    }
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
    .instagram-embed {
        display: block;
        margin: 0 auto;
        width: 100%; 
        max-width: 90vw; 
        aspect-ratio: 4 / 5; 
        height: auto; 
        overflow: hidden; 
        border: none; 
        padding: 0;
    }/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/wall-texture.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}


header {

    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

.title-image {
    max-height: 130px;
    width: auto;
    object-fit: contain;
    margin: auto;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    margin-left: auto;
}

nav {
    width: 100%; /* Ensure the menu spans the header width */
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Wrap items on mobile */
    transition: max-height 0.3s ease; /* Smooth transition for toggle */
}

.menu li {
    margin: 0;
}

.menu a {
    color: white;
    text-decoration: none;
}

main {
    padding: 40px;
    flex: 1;
    text-align: center;
    z-index: 1; /* Ensures text stays above the background */
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    z-index: 1;
}

.impressum-button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.impressum-button:hover {
    background-color: white;
    color: black;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    color: black;
}

.modal-content .close {
    color: black;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.instagram-embed {
    display: block;
    margin: 0 auto;
    width: 40%;
    max-width: 90vw;
    height: 800px;
    overflow: hidden;
    border: none;
    padding: 0;
}

.facebook-container {
    display: block;
    margin: 0 auto;
    width: 27%;
    max-width: 90vw;
    height: 800px;
    overflow: hidden;
    border: none;
    padding: 0;
}

/* General link styling */
a {
    text-decoration: underline; /* Always underline links */
    color: inherit; /* Inherit text color from parent (no color change) */
    cursor: pointer; /* Change cursor to pointer on hover */
}

a:hover {
    text-decoration: underline; /* Keep underline on hover */
    color: inherit; /* Maintain the same color */
}

/* Responsive styles */
@media (max-width: 768px) {
    body::after {
        content: "";
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url('../images/logo-mark.png') no-repeat center center;
        background-size: 70%;
        width: 70vw;
        height: 70vw;
        opacity: 0.5;
        z-index: -1;
    }
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .menu.active {
        display: flex; /* Show the menu when active */
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .menu a {
        padding: 10px;
        text-align: center;
        width: 100%; /* Full-width links for mobile */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Divider between links */
    }

    .menu a:last-child {
        border-bottom: none;
    }

    .instagram-embed {
        width: 100%;
        max-width: 90vw;
        aspect-ratio: 4 / 5;
        height: auto;
        overflow: hidden;
        border: none;
        padding: 0;
    }
    .facebook-container {
        width: 100%;
        max-width: 90vw;
        border: none;
        padding: 0;
    }
}

}

@media (prefers-reduced-motion: reduce) {
    .venue-carousel__track,
    .venue-carousel__slide img,
    .venue-carousel__arrow,
    .venue-carousel__dot {
        transition: none;
    }
}

/* Image lightbox */
.is-zoomable {
    cursor: zoom-in;
}

.is-zoomable:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    padding: clamp(1rem, 4vw, 3rem);
    align-items: center;
    justify-content: center;
    background: rgba(5, 2, 2, 0.94);
    backdrop-filter: blur(0.5rem);
}

.image-modal.is-open {
    display: flex;
    animation: image-modal-in 220ms ease both;
}

.image-modal__content {
    position: relative;
    display: flex;
    width: min(92vw, 90rem);
    height: min(88svh, 60rem);
    align-items: center;
    justify-content: center;
}

.image-modal__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.5);
}

.image-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-items: center;
    color: white;
    background: rgba(8, 5, 5, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 1.65em;
    line-height: 1;
    cursor: pointer;
    transform: translate(35%, -35%);
}

.image-modal__close:hover,
.image-modal__close:focus-visible {
    color: var(--black);
    background: white;
    outline: none;
}

.image-modal__caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 1rem;
    color: white;
    background: linear-gradient(transparent, rgba(5, 2, 2, 0.9));
    font-size: 0.78em;
    text-align: center;
}

@keyframes image-modal-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .image-modal {
        padding: 1rem;
    }

    .image-modal__content {
        width: 100%;
        height: 86svh;
    }

    .image-modal__close {
        top: 0.5rem;
        right: 0.5rem;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .image-modal.is-open {
        animation: none;
    }
}

/* Event-page logo signatures; homepage event icons remain unchanged */
main {
    position: relative;
}

.event-page-header {
    width: calc(100% - clamp(7rem, 12vw, 10rem));
    margin-left: 0;
}

.event-page-header h1 {
    margin-left: 0;
}

.logo-header + .event-page-logo {
    position: absolute;
    top: clamp(2.5rem, 5vw, 4.5rem);
    right: 0;
    z-index: 1;
    width: clamp(5.5rem, 9vw, 8rem);
    margin: 0;
    justify-content: flex-end;
}

.event-page-logo .logo {
    width: 100%;
    max-height: 8rem;
    object-fit: contain;
    opacity: 0.82;
    filter: drop-shadow(0 0.8rem 1.2rem rgba(0, 0, 0, 0.3));
    transition: opacity 180ms ease, transform 300ms var(--ease-out);
}

.event-page-logo:hover .logo {
    opacity: 1;
    transform: rotate(-2deg) scale(1.04);
}

@media (max-width: 768px) {
    .event-page-header {
        width: 100%;
    }

    .logo-header + .event-page-logo {
        position: static;
        width: clamp(8rem, 35vw, 11rem);
        margin: 0 auto 2rem;
        justify-content: center;
    }

    .event-page-logo .logo {
        max-height: 11rem;
    }
}

/* Contact page */
.contact-intro {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem) !important;
}

.contact-eyebrow {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-details__item {
    min-height: 12rem;
    padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) 1.75rem 0;
}

.contact-details__item + .contact-details__item {
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
    border-left: 1px solid var(--line);
}

.contact-details__item > a:not(.contact-details__small-link) {
    font-size: clamp(1.25em, 2.1vw, 1.8em);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.contact-details__item p:not(.contact-eyebrow) {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.contact-details__small-link {
    color: var(--muted);
    font-size: 0.78em;
}

.contact-map {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none !important;
}

main .contact-map .image {
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(20rem, 48vw, 38rem);
    margin: 0;
    border: 0;
    object-fit: cover;
    transition: filter 450ms ease, transform 700ms var(--ease-out);
}

.contact-map > span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    min-height: 3rem;
    padding: 0.7rem 1rem;
    align-items: center;
    gap: 1rem;
    color: var(--black);
    background: white;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-map:hover .image,
.contact-map:focus-visible .image {
    filter: saturate(0.9) contrast(1.1);
    transform: scale(1.015);
}

.opening-hours {
    width: 100%;
    margin-bottom: clamp(4rem, 9vw, 8rem);
}

.contact-section-heading {
    display: grid;
    grid-template-columns: minmax(10rem, 0.7fr) 2fr;
    align-items: end;
    gap: 2rem;
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.contact-section-heading h2,
.booking-section h2 {
    margin: 0;
    font-size: clamp(3em, 7vw, 6.5em);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.opening-hours__list {
    border-top: 1px solid var(--line);
}

.opening-hours__row {
    display: grid;
    grid-template-columns: minmax(8rem, 0.75fr) minmax(12rem, 1fr) minmax(8rem, 0.65fr);
    align-items: baseline;
    gap: 2rem;
    min-height: 5.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
    transition: padding 220ms var(--ease-out), background-color 220ms ease;
}

.opening-hours__row:hover {
    padding-inline: 1rem;
    background: rgba(255, 255, 255, 0.035);
}

.opening-hours__row > span {
    color: var(--muted);
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.opening-hours__row strong {
    font-size: clamp(1.45em, 3vw, 2.5em);
    letter-spacing: -0.04em;
    line-height: 1;
}

.opening-hours__row small {
    color: var(--muted);
    font-size: 0.8em;
    text-align: right;
}

.opening-hours__row.is-closed {
    opacity: 0.55;
}

.booking-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    width: 100%;
    padding-block: clamp(2.5rem, 6vw, 5rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.booking-section__copy {
    align-self: center;
}

.booking-section__copy > p:not(.contact-eyebrow) {
    max-width: 38rem;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
    font-size: clamp(1em, 1.5vw, 1.2em);
    line-height: 1.7;
}

.booking-section__action {
    display: flex;
    width: min(25rem, 100%);
    min-height: 4.5rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.15em, 2vw, 1.5em);
    font-weight: 700;
    text-decoration: none !important;
}

.booking-section__action span {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 0.75em;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.booking-section__action:hover span,
.booking-section__action:focus-visible span {
    color: var(--black);
    background: white;
    transform: translateX(0.3rem);
}

.booking-section .instagram-embed,
.booking-section .instagram-consent {
    width: 100%;
    min-height: 32rem;
    margin: 0;
}

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

    .contact-details__item {
        min-height: 0;
        padding: 1.25rem 0;
    }

    .contact-details__item + .contact-details__item {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    main .contact-map .image {
        height: 21rem;
    }

    .contact-section-heading {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .opening-hours__row {
        grid-template-columns: 1fr auto;
        gap: 0.45rem 1rem;
        min-height: 5rem;
    }

    .opening-hours__row strong {
        font-size: clamp(1.2em, 6vw, 1.6em);
        text-align: right;
    }

    .opening-hours__row small {
        grid-column: 1 / -1;
        text-align: left;
    }

    .opening-hours__row:hover {
        padding-inline: 0;
        background: transparent;
    }

    .booking-section {
        grid-template-columns: 1fr;
    }

    .booking-section .instagram-embed,
    .booking-section .instagram-consent {
        min-height: 26rem;
    }
}

/* Carousel-led site system */
:root {
    --page-gutter: clamp(1.25rem, 5vw, 4.5rem);
    --content-width: 1180px;
    --copy-width: 760px;
    --ink: #fff;
    --muted: rgba(255, 255, 255, 0.66);
    --line: rgba(255, 255, 255, 0.22);
    --line-strong: rgba(255, 255, 255, 0.48);
    --black: #080505;
    --panel: rgba(13, 5, 5, 0.82);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: #160808;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.5;
}

body::before {
    background-color: #160808;
    background-position: center top;
}

body::after {
    width: min(42rem, 60vw);
    height: min(42rem, 60vw);
    background-size: contain;
    opacity: 0.22;
}

header {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    position: relative;
    z-index: 20;
    min-height: 6.5rem;
    padding: 0.75rem var(--page-gutter);
    background: rgba(8, 5, 5, 0.92);
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.header-container {
    flex: 0 0 auto;
    width: auto;
    min-height: 5rem;
    margin: 0;
    justify-content: flex-start;
}

.title-image {
    width: clamp(12rem, 19vw, 17rem);
    max-height: 5rem;
    margin: 0;
}

nav {
    flex: 1 1 auto;
    width: auto;
    margin: 0;
}

.menu {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu::-webkit-scrollbar {
    display: none;
}

.menu li {
    flex: 0 0 auto;
    transform: none;
}

.menu li:hover {
    transform: none;
    text-decoration: none;
}

.menu a {
    position: relative;
    display: block;
    padding: 1rem 0 1.1rem;
    margin-right: 1.1rem;
    color: var(--muted);
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color 180ms ease;
}

.menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms var(--ease-out);
}

.menu a:hover,
.menu a:focus-visible,
.menu a.is-active {
    color: white;
    text-decoration: none;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a.is-active::after {
    transform: scaleX(1);
}

main {
    width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
    margin-inline: auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    text-align: left;
}

main > * {
    animation: content-in 600ms var(--ease-out) both;
}

main > :nth-child(2) {
    animation-delay: 70ms;
}

main > :nth-child(3) {
    animation-delay: 120ms;
}

@keyframes content-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main > h1,
.logo-header h1,
.about-copy h1 {
    width: min(940px, 100%);
    margin: 0 auto clamp(1.25rem, 2.5vw, 2.25rem);
    font-size: clamp(3em, 7.5vw, 7em);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.88;
    text-align: left;
    text-wrap: balance;
}

main > p {
    width: min(920px, 100%);
    margin: 0 auto 1.1rem;
    font-size: clamp(1em, 1.4vw, 1.18em);
    line-height: 1.7;
    text-align: left;
}

main > p:first-of-type {
    font-size: clamp(1.2em, 2vw, 1.6em);
    line-height: 1.5;
}

main a:not(.event-link) {
    text-decoration-color: var(--line-strong);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25em;
    transition: text-decoration-color 180ms ease, opacity 180ms ease;
}

main a:not(.event-link):hover {
    text-decoration-color: white;
}

.logo-header {
    width: min(940px, 100%);
    margin: 0 auto 1.25rem;
    justify-content: flex-start;
}

.logo-container {
    width: min(920px, 100%);
    justify-content: flex-start;
    margin: 0 0 clamp(1.5rem, 3vw, 2.75rem);
}

.logo-header + .logo-container {
    justify-content: center;
    margin-inline: auto;
}

.homepage-logo {
    justify-content: center;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto;
}

main > p strong,
.about-copy strong {
    font-weight: 750;
}

main > p em,
.about-copy em {
    color: rgba(255, 255, 255, 0.82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08em;
}

.logo {
    width: clamp(8rem, 17vw, 13rem);
    border: 0;
    border-radius: 0;
    filter: drop-shadow(0 1.1rem 1.8rem rgba(0, 0, 0, 0.35));
    box-shadow: none;
}

.about-copy {
    width: min(1000px, 100%);
    margin: clamp(3rem, 6vw, 5rem) auto;
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid var(--line);
}

.about-copy h2 {
    margin: 0 auto clamp(1.25rem, 2.5vw, 2.25rem);
    font-size: clamp(2.8em, 6vw, 5.5em);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.about-copy p {
    width: min(920px, 100%);
    font-size: clamp(1em, 1.4vw, 1.18em);
    line-height: 1.7;
}

.drinks-menu {
    display: grid;
    width: 100%;
    margin: clamp(3rem, 6vw, 5rem) auto;
    padding: clamp(1.75rem, 4vw, 3.5rem) 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.drinks-menu__copy {
    max-width: 48rem;
}

.drinks-menu__eyebrow {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.drinks-menu h2 {
    max-width: 12ch;
    margin: 0 0 1rem;
    font-size: clamp(2.8em, 6vw, 5.8em);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.88;
    text-wrap: balance;
}

.drinks-menu__copy > p:last-child {
    max-width: 38rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1em, 1.4vw, 1.18em);
    line-height: 1.6;
}

.drinks-menu__link {
    display: flex;
    min-width: min(100%, 19rem);
    padding: 1.25rem 0;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    font-size: clamp(1.15em, 2vw, 1.55em);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none !important;
}

.drinks-menu__link span {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 0.7em;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.drinks-menu__link:hover span,
.drinks-menu__link:focus-visible span {
    color: var(--black);
    background: white;
    transform: translate(0.18rem, -0.18rem);
}

.venue-gallery {
    width: 100%;
    margin-block: clamp(3rem, 6vw, 5rem);
}

.events-heading {
    margin-top: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: clamp(1.25rem, 2.5vw, 2.25rem);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid var(--line);
    font-size: clamp(2.6em, 6vw, 5.8em);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.88;
    text-wrap: balance;
}

.venue-gallery + .events-heading {
    margin-top: 0;
}

.events-heading + .logo-header {
    margin-top: 1rem;
}

.events-heading ~ .logo-header {
    width: 100%;
    margin-bottom: 0;
    border-top: 1px solid var(--line);
}

.event-link {
    position: relative;
    width: 100%;
    min-height: 10rem;
    padding: 1.5rem 4.5rem 1.5rem 0;
    justify-content: space-between;
    gap: 2rem;
    text-decoration: none;
}

.event-link::after {
    content: "→";
    position: absolute;
    right: 0;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 1.2em;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.event-link:hover::after,
.event-link:focus-visible::after {
    color: var(--black);
    background: white;
    transform: translateX(0.3rem);
}

.event-link h2 {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.7em, 1vw, 0.8em);
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-align: left;
    text-transform: uppercase;
}

.event-link h2 span {
    display: block;
    margin-top: 0.35rem;
    color: white;
    font-size: clamp(1.8em, 4vw, 3.6em);
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: none;
}

.event-link .logo-container {
    width: auto;
    margin: 0 4rem 0 auto;
}

.logo2 {
    width: clamp(4.5rem, 8vw, 6.5rem);
    border-radius: 0;
    box-shadow: none;
    transition: transform 300ms var(--ease-out);
}

.event-link:hover .logo2,
.event-link:focus-visible .logo2 {
    transform: scale(1.08) rotate(-2deg);
}

.more-events-heading {
    margin-top: clamp(3.5rem, 7vw, 6rem) !important;
    font-size: clamp(2.4em, 5vw, 4.8em) !important;
}

.home-actions {
    width: 100%;
    margin-top: clamp(4rem, 8vw, 7rem);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid var(--line);
}

.home-actions__eyebrow {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-actions h2 {
    margin: 0 0 clamp(2rem, 4vw, 3.5rem);
    font-size: clamp(3em, 7vw, 6.5em);
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.home-actions__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.home-actions__links a {
    display: flex;
    min-height: 6rem;
    padding: 1.5rem 0;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.3em, 2.5vw, 2.2em);
    font-weight: 700;
    letter-spacing: -0.035em;
    text-decoration: none !important;
}

.home-actions__links a:first-child {
    padding-right: 2rem;
}

.home-actions__links a:last-child {
    padding-left: 2rem;
    border-left: 1px solid var(--line);
}

.home-actions__links span {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    margin-left: 1rem;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 0.55em;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.home-actions__links a:hover span,
.home-actions__links a:focus-visible span {
    color: var(--black);
    background: white;
    transform: translateX(0.3rem);
}

.instagram-consent,
.facebook-consent,
.facebook-container,
.instagram-embed {
    width: min(var(--copy-width), 100%);
    max-width: 100%;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.instagram-consent {
    min-height: 26rem;
    align-items: flex-start;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--panel);
    border-color: var(--line);
    text-align: left;
}

.instagram-consent__mark {
    font-size: 2.8em;
}

.instagram-consent h2 {
    font-size: clamp(2em, 4vw, 3.5em);
    letter-spacing: -0.04em;
    line-height: 1;
}

.instagram-consent__links {
    justify-content: flex-start;
}

.instagram-consent__load {
    min-height: 2.8rem;
    border-radius: 0;
}

.facebook-container,
.instagram-embed {
    height: min(800px, 80vh);
}

.logo3 {
    display: block;
    width: min(42rem, 100%);
    max-width: 100%;
    margin: clamp(3rem, 7vw, 6rem) auto 0;
    border-radius: 0;
    box-shadow: none;
}

main .image {
    display: block;
    width: min(56rem, 100%) !important;
    max-width: 100% !important;
    margin: clamp(3rem, 6vw, 5rem) auto;
    border: 1px solid var(--line);
    filter: saturate(0.7) contrast(1.08);
}

.site-footer {
    padding: 1.5rem var(--page-gutter);
    background: rgba(8, 5, 5, 0.96);
}

.site-footer__inner {
    width: min(var(--content-width), 100%);
}

.modal {
    padding: var(--page-gutter);
    background: rgba(8, 5, 5, 0.92);
}

.modal-content {
    position: relative;
    width: min(760px, 100%);
    max-width: none;
    margin: clamp(1rem, 5vh, 4rem) auto;
    padding: clamp(2rem, 6vw, 5rem);
    color: white;
    background: #120909;
    border: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
}

.modal-content .close {
    position: sticky;
    top: 0;
    z-index: 1;
    float: right;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    place-items: center;
    color: white;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.modal-content .close:hover {
    color: var(--black);
    background: white;
}

.impressum h2 {
    font-size: clamp(2.6em, 6vw, 5em);
    letter-spacing: -0.05em;
    line-height: 0.95;
}

@media (max-width: 768px) {
    :root {
        --page-gutter: 1.25rem;
    }

    body::after {
        width: 80vw;
        height: 80vw;
        opacity: 0.08;
    }

    header {
        display: block;
        min-height: auto;
        padding: 0.75rem var(--page-gutter);
    }

    .header-container {
        min-height: 3.75rem;
        justify-content: space-between;
    }

    .title-image {
        width: 11rem;
        max-height: 3.5rem;
    }

    .hamburger {
        position: static;
        display: grid;
        width: 2.8rem;
        height: 2.8rem;
        margin: 0;
        padding: 0;
        place-items: center;
        border: 1px solid var(--line-strong);
        border-radius: 50%;
        color: white;
        font-size: 1.35em;
        line-height: 1;
        transform: none;
    }

    .hamburger::before {
        content: none;
    }

    .hamburger[aria-expanded="true"]::before {
        content: none;
    }

    nav {
        width: auto;
        margin: 0 calc(-1 * var(--page-gutter));
    }

    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-height: calc(100svh - 5.25rem);
        gap: 0;
        padding: 0 var(--page-gutter);
        overflow-y: auto;
        background: #080505;
        border-bottom: 1px solid var(--line);
    }

    .menu.active {
        display: flex;
        align-items: stretch;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        margin: 0;
        padding: 1.05rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.78em;
        line-height: 1.2;
        text-align: left;
    }

    .menu li > a:last-child {
        border-bottom: 1px solid var(--line);
    }

    .menu li:last-child > a:last-child {
        border-bottom: 0;
    }

    .menu a::after {
        right: 0;
    }

    main {
        width: calc(100% - (2 * var(--page-gutter)));
        padding: clamp(2.5rem, 10vw, 4rem) 0;
    }

    main > h1,
    .logo-header h1 {
        font-size: clamp(2.8em, 14vw, 4.6em);
        overflow-wrap: anywhere;
    }

    .logo-header {
        margin-bottom: 1.25rem;
    }

    .logo-container {
        margin-bottom: 2.75rem;
    }

    .drinks-menu {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .drinks-menu__link {
        width: 100%;
        min-width: 0;
    }

    .venue-gallery {
        width: 100%;
        margin-block: 3rem;
    }

    .venue-carousel__slide {
        aspect-ratio: 4 / 3;
    }

    .event-link {
        min-height: 8rem;
        padding-right: 3.5rem;
    }

    .event-link .logo-container {
        display: none;
    }

    .event-link::after {
        width: 2.6rem;
        height: 2.6rem;
    }

    .home-actions {
        margin-top: 4rem;
    }

    .home-actions__links {
        grid-template-columns: 1fr;
    }

    .home-actions__links a:first-child,
    .home-actions__links a:last-child {
        min-height: 5rem;
        padding: 1.25rem 0;
        border-left: 0;
    }

    .instagram-consent,
    .facebook-consent,
    .facebook-container,
    .instagram-embed {
        margin-top: 3rem;
    }

    .instagram-consent {
        min-height: 0;
        padding: 2rem 1.25rem;
    }

    .instagram-consent__links {
        align-items: flex-start;
        flex-direction: column;
    }

    .instagram-consent__links span {
        display: none;
    }

    .modal {
        padding: 0;
    }

    .modal-content {
        min-height: 100%;
        margin: 0;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    main > *,
    .logo2 {
        animation: none;
        transition: none;
    }
}
