body,
html {
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  background: #ffffff;
}
.drinks-hero {
  height: 60dvh;
  width: 100%;
  background-image: url(../images/bar.jpg);
  background-size: cover;
  background-position: bottom;
  display: flex;
}

.drinks-hero h1 {
  align-self: end;
  margin-bottom: 10rem;
  margin-left: 2rem;
  font-size: clamp(1rem, 5vw + 1rem, 10rem);
  font-family: de-fonte;
}

.drinks-section1 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "a a"
    "b b";
  width: 100%;
  background: #fff;
  flex-direction: row;
}

.text-block1 {
  position: relative;
  padding-top: 15rem;
  grid-area: a;
}

.text-block1 p {
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  color: black;
  font-weight: 400;
  font-family: mersad;
  line-height: 1.15;
  text-align: center;
  padding: 0 5rem 0;
}

.text-block2 {
  grid-area: b;
}
.text-block2 p {
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  color: black;
  font-weight: 300;
  font-family: mersad;
  line-height: 1.1;
  text-align: center;
  padding: 5rem 5rem 0;
}

.image-block1 {
  position: relative;
  padding-top: 20rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: #fff;
}

.image-block1 img {
  height: auto;
  width: 900px;
}

.image-block-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  z-index: 5;
  bottom: 0rem;
  padding: 50px;
  left: 50rem;
}

.image-block-wrapper h1 {
  color: black;
  font-family: mersad;
  font-size: clamp(1rem, 2vw + 1rem, 10rem);
  padding-bottom: 7rem;
  font-weight: 200;
}

.image-block1-text {
  display: inline-grid; /* wichtig: shrink-to-fit statt 100% */
  grid-template-columns: repeat(2, max-content);
  gap: 4rem 4rem; /* statt 20% */
  align-items: stretch; /* gleiche Höhe innerhalb einer Zeile */
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: mersad;
  min-width: 12rem;
}

.text h2 {
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  font-weight: 200;
  padding-bottom: 20px;
}

.text p {
  padding: 0;
  font-family: mersad;
  padding-top: 40px;
  font-weight: 400;
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  line-height: 1.1;
}
.text hr {
  width: clamp(3rem, 8vw + 1rem, 10rem);
}

.text h2,
.text p {
  color: black;
}

.drinks-section2 {
  background: #fff;
}

.events-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.events-wrapper h1 {
  color: rgba(0, 0, 0, 0.95);
  font-size: clamp(1rem, 3vw + 1rem, 5rem);
  padding: 10rem 2rem 10rem;
  text-align: center;
  font-weight: 200;
  font-family: mersad;
}
.events-galery {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8rem;
  align-items: stretch;
  padding-bottom: 10rem;
}

.events-galery img {
  width: 400px;
}

.hr-border {
  width: 95%;
  margin: 50px 0 50px;
  justify-self: center;
}

.footer-padding {
  width: 100%;
  height: 100px;
  background: #000000;
  margin-top: 100px;
}

.footer-contact h3 {
  padding-bottom: 15px;
}

.footer-contact p {
  padding: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-menu .logo a img {
  filter: invert(1);
}

/* ===========================
   INFO POPUP (privacy/imprint)
   =========================== */

/* Overlay Layer */
.info-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 240ms ease,
    visibility 0ms linear 240ms;
}

/* Open state */
.info-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0ms linear 0ms;
}

/* Backdrop */
.info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Modal */
.info-modal {
  position: relative;
  z-index: 1;

  width: min(920px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  min-height: 240px;

  display: grid;
  grid-template-rows: auto 1fr;

  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  padding: 18px 18px 16px;
}

/* Close button */
.info-close {
  position: absolute;
  top: 10px;
  right: 12px;

  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Title */
.info-title {
  margin: 6px 44px 14px 6px;
  font-size: 18px; /* kannst du anpassen */
}

/* Scroll area (DAS ist der wichtige Part) */
.info-body {
  min-height: 0; /* <— wichtig für grid scroll */
  overflow-y: auto; /* <— hier wird gescrollt */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y; /* <— scroll trotz touch-lock */

  padding: 6px 10px 8px 6px;
}

/* Optional nicer scrollbar (Webkit) */
.info-body::-webkit-scrollbar {
  width: 8px;
}
.info-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}
.info-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

/* Background lock (Desktop+Mobile+Touch) */
html.info-open,
html.info-open body {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}

/* Locomotive/transform fix: fixed overlay zuverlässig */
html.info-open [data-scroll-container] {
  transform: none !important;
}

#infoOverlayBody p {
  padding-left: 0;
}
.info-title {
  margin: 0 0 0rem 0;
  color: #fff;
  font-family: mersad, sans-serif;
  font-weight: 200;
  letter-spacing: 3px;
  font-size: clamp(1.2rem, 1vw + 1rem, 2.2rem);
  text-align: center;
}



/* Scrollbarer Body */
.info-body {
  max-height: calc(86dvh - 6.2rem); /* Platz für Padding + Titel */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-right: 10px;
  color: #fff;
  font-family: mersad, sans-serif;
  font-size: clamp(0.95rem, 0.25vw + 0.95rem, 1.15rem);
  line-height: 1.6;
}

/* Deine Inhalte (h3/p) */
.info-body h3 {
  margin: 22px 0 10px;
  font-weight: 200;
  letter-spacing: 2px;
  font-size: 0.95em;
  opacity: 0.95;
  text-align: left;
}

.info-body p {
  margin: 0 0 14px;
  opacity: 0.95;
  text-align: left;
}

/* Close */
.info-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {
  #imprintContent p, #privacyContent p {
    font-size: 12px;
  }
}