:root {
  --accent: #7a1f2b;
  --text: #222;
  --muted: #767676;
  --border: #eee;
}

body::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -100px;
  width: 1300px;
  height: 1300px;
  background-image: url("assets/hintergrund-export.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hero,
main {
  position: relative;
  z-index: 1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

.hero {
  text-align: center;
  padding: 70px 20px 50px;
}

.logo {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}

.block {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
}

.label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: normal;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 2.1;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.hours th,
.hours td {
  padding: 4px 0;
}

.hours th {
  font-weight: normal;
  text-align: left;
}

.hours td:last-child {
  text-align: right;
}

.hours .closed {
  color: var(--muted);
}

.contact {
  text-align: center;
  padding-bottom: 70px;
}

.contact p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero { padding: 50px 20px 40px; }
}

@media (max-width: 480px) {
  body::before {
    display: none;
  }
}
