/* ==========================================================================
   089munich - Main Stylesheet
   ========================================================================== */

/* CSS Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto Condensed', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  background-color: #f4f4f4;
}

/* Fullscreen Hero Wrapper */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: url('../images/0000.png') no-repeat center center / cover;
}

/* Content Card Container */
.content-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Typografie & Grautöne */
h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333333;
}

.subtitle {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #777777;
  margin-top: 0.5rem;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #555555;
}

strong {
  color: #333333;
}

footer {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
}
