html {
  height: 100%;
}

body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding-top: 80px;
  box-sizing: border-box;
  background-color: #133450;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0e202f;
  z-index: 2000;
  box-sizing: border-box;
  height: 80px;
}

.mobile-header-logo {
  height: 56px;
  width: auto;
}

.mobile-header-title {
  flex: 1;
  font-size: 2.2rem;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* BURGER */
.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2100;
  padding: 4px;
}

.burger .line {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger.open .line:nth-child(2) {
  opacity: 0;
}
.burger.open .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #0e202f;
  position: fixed;
  top: 80px;
  left: -100%;
  width: 75%;
  height: calc(100% - 80px);
  padding: 30px 24px;
  z-index: 1500;
  transition: left 0.3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.4);
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: rgba(0, 150, 255, 0.9);
}

/* CONTENT AREA */
.mobile-content {
  flex: 1;
  padding: 20px 20px 40px 20px;
}

.mobile-page-title {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 150, 255, 0.5);
  padding-bottom: 10px;
}

/* INDEX */
.bild-logo-mobile-wrap {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.bild-logo-mobile {
  width: 100%;
  display: block;
  object-fit: cover;
}

.logo-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: auto;
  z-index: 2;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-size: 1.1rem;
  line-height: 1.7;
}

a.Getränke {
  color: rgba(0, 150, 255, 0.9);
  text-decoration: underline;
}

/* ÖFFNUNGSZEITEN */
.mobile-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.mobile-hours-row span:first-child {
  font-weight: 700;
  min-width: 110px;
}

/* SOCIAL */
.mobile-social {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* KALENDER */
.mobile-calendar-wrap {
  width: 100%;
  overflow: hidden;
}

/* IMPRESSUM */
.mobile-impressum p {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 2;
}

.mobile-impressum a {
  color: rgba(131, 131, 255, 1);
  text-decoration: underline;
}

/* FOOTER */
.mobile-footer {
  background-color: #0e202f;
  color: white;
  text-align: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
}

.mobile-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

/* HIDE DESKTOP STUFF */
.kasten, .seitenleiste, footer, .menu-schrift,
.bild-logo, .logo, #logo, article {
  display: none;
}

/* TRAIL - fixed so it never affects page layout */
.trail {
  position: fixed !important;
  pointer-events: none;
}