/* CSS */
:root {
  --arcade-stroke: #111;
  --btn-padding: 12px 26px;
  --font-stack: "Press Start 2P", system-ui, sans-serif;
  --pastellblue: #b3ebf2;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f0ead6;
}

/* Hero Section */
.hero {
  height: 80vh;
  width: 100vw;
  background: url("images/hero.jpg") no-repeat center top/cover;
  background-position: center 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 20px;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dunkler Overlay */
}
.hero .overlay {
  position: relative;
  z-index: 1;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 0.3em;
}
.hero p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 1em;
}

.buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Content */
.content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}
.content p {
  margin-bottom: 2rem;
  color: #444;
}

/* Responsive Video */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trotzdem {
  text-align: center;
  margin-top: 2rem;
}

.schaeme {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
footer {
  background: #f7f7f7;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}
footer a {
  color: #111;
  text-decoration: underline;
}

.btn {
  font-family: var(--font-stack);
  font-weight: normal;
  cursor: pointer;
  border: none;
  display: inline-block;
  padding: var(--btn-padding);
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
  transition: transform 0.06s linear, box-shadow 0.06s linear;
  text-decoration: none;
}

.arcade {
  background: var(--pastellblue);
  color: #111;
  position: relative;
  outline: 2px solid #111;
}

.btn a {
  text-decoration: none;
  color: #111;
}

/* hover and active */
.arcade:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
}
.arcade:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6) inset;
}
.arcade:focus {
  box-shadow: 0 0 0 4px rgba(255, 58, 130, 0.25);
  outline: none;
}

/* small accessibility: prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

@media (max-width: 637px) {
  .buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
