/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(Lato-400-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(Lato-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(Lato-700-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(Lato-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(Merriweather-700-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(Merriweather-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* styles.css */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f5f5f5;
  color: #1a2238;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #1a2238;
}

.hero h1 {
  user-select: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  background-color: #1a2238;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

header .subline {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
}

.cta {
  background-color: #ffc600;
  color: #1a2238;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

section {
  background-color: #ffffff;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: #ffc600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #1a2238;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #000d1a;
}

footer {
  background-color: #1a2238;
  color: white;
  text-align: center;
  padding: 1rem;
}

footer * {
  margin: 0 0.5rem;
}

footer a {
  color: #ffc600;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header .subline {
    font-size: 1rem;
  }
}



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;          /* Abstand zwischen Bild und Text */
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffc600;       /* Signalgelb für Text */
  text-decoration: none;
}

nav .logo img {
  width: 40px;          /* Logo-Größe anpassen */
  height: 40px;
  object-fit: contain;  /* Verhindert Verzerrung */
  display: block;
}

nav .logo span {
  line-height: 1;       /* Vertikale Ausrichtung Text */
  user-select: none;    /* Text nicht markierbar */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

nav ul li a.active,
nav ul li a:hover {
  text-decoration: underline;
}

.hero.small {
  padding: 3rem 2rem;
  text-align: center;
}

.container {
  position: relative;
}

.badge {
  position: absolute;
  left: -190px;
  top: -20px;

  width: 180px;
  height: 100px;

  background-color: #ffc600;
  color: #1a2238;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1rem;

  transform: rotate(-12deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  z-index: 2;
}

.badge::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(26, 34, 56, 0.4);
  border-radius: 50%;
}

@media (max-width: 1350px) {
  .badge {
    position: static;
    margin: 0 1rem 1.5rem;
    transform: rotate(-5deg);
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}


.photo {
	float: right;
	width: 320px;
	margin: 1rem;
}
.photo img {
	padding: 5px;
	border: 5px solid #ffc600;
}
@media (max-width: 768px) {
	.photo { float: none; width: 100%; margin: 1rem 0; }
}
@media (min-width: 768px) {
	.photo { float: right; width: 320px; }
}