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 ."
    ". 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, 1.8vw + 1rem, 10rem);
  color: black;
  font-weight: 400;
  font-family: mersad;
  line-height: 1.15;
  padding-left: 3%;
}

.text-block2 {
  grid-area: b;
}
.text-block2 p {
  font-size: clamp(1rem, 0.5vw + 1rem, 10rem);
  color: black;
  font-weight: 300;
  font-family: mersad;
  padding-right: 1rem;
  line-height: 1.1;
}

.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, 1vw + 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;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



