
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1C4C63;
}
h1, h2, h3 {
  font-weight: 800;
}
p {
  font-weight: 300;
}
a.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #E3D30C;
  color: #1C4C63;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease;
}
a.cta:hover {
  background: #c2b000;
}
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: space-between;
  padding: 1rem 10%;
  z-index: 999;
  border-bottom: 1px solid #eee;
}
.navbar .logo {
  font-weight: 800;
  color: #1C4C63;
}
.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1C4C63;
  font-weight: 500;
}
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 3rem;
  color: white;
  text-align: center;
}
.hero-overlay.left {
  text-align: left;
  margin-left: 10%;
}
.hero-overlay h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-overlay p {
  font-size: 1.3rem;
  margin-top: 1rem;
}
.about, .flyertext, .kontakt {
  padding: 4rem 10%;
}
.flyertext blockquote {
  font-style: italic;
  font-weight: 400;
  color: #001E30;
  margin-bottom: 2rem;
}
footer {
  text-align: center;
  background: #f0f0f0;
  padding: 2rem;
}
