/* ===========================
   Lokale Museo Sans Fonts
   =========================== */
@font-face {
  font-family: 'museo_sans100';
  src: url('fonts/MuseoSans_100-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_100-webfont.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'museo_sans100_italic';
  src: url('fonts/MuseoSans_100_Italic-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_100_Italic-webfont.woff') format('woff');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'museo_sans300';
  src: url('fonts/MuseoSans_300-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_300-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'museo_sans300_italic';
  src: url('fonts/MuseoSans_300_Italic-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_300_Italic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'museo_sans500';
  src: url('fonts/MuseoSans_500-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_500-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'museo_sans500_italic';
  src: url('fonts/MuseoSans_500_Italic-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_500_Italic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'museo_sans700';
  src: url('fonts/MuseoSans_700-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_700-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'museo_sans700_italic';
  src: url('fonts/MuseoSans_700_Italic-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_700_Italic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'museo_sans900';
  src: url('fonts/MuseoSans_900-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_900-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'museo_sans900_italic';
  src: url('fonts/MuseoSans_900_Italic-webfont.woff2') format('woff2'),
       url('fonts/MuseoSans_900_Italic-webfont.woff') format('woff');
  font-weight: 900;
  font-style: italic;
}

/* ===========================
   Basis-Styles
   =========================== */
:root {
  --primary: #1B6CB2;
  --secondary: #B0B0B0;
  --text: #333;
  --background: #f9f9f9;
}

body {
  margin: 0;
  font-family: 'museo_sans300', Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--background);
}

h1, h2 {
  font-family: 'museo_sans700', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ===========================
   Hero-Bereich
   =========================== */
header {
  background: var(--primary);
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
}

.hero-left, .hero-right {
  flex: 1 1 300px;
  padding: 20px;
}

.hero-left img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
}

.hero-right p.slogan {
  font-family: 'museo_sans500', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  margin: 0 0 20px 0;
}

.hero-right a.button {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 5px;
  font-family: 'museo_sans700', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-right a.button:hover {
  background: #e6e6e6;
  color: #0f3f6a;
}

/* ===========================
   Scroll-Pfeil
   =========================== */
.scroll-down {
  position: absolute;
  bottom: 120px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: bounce 2s infinite;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-down svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.scroll-down:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ===========================
   Sektionen
   =========================== */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

/* ===========================
   Kontakt
   =========================== */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.contact-item .icon {
  width: 30px;          /* feste Breite für alle Emojis */
  flex-shrink: 0;
  text-align: center;   /* Emoji mittig in der Spalte */
}

.contact-item .text {
  flex: 1;
}

.contact-buttons {
  display: flex;
  gap: 15px;              /* Abstand zwischen den Buttons */
  flex-wrap: wrap;        /* Falls wenig Platz, umbrechen */
  margin-top: 20px;
}

.contact-buttons .button {
  flex: 1;                /* Beide gleich breit */
  text-align: center;     /* Text mittig */
  min-width: 150px;       /* Mindestbreite für Lesbarkeit */
  padding: 12px 0;        /* Einheitliche Höhe */
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'museo_sans700', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.3s ease;
}

.contact-buttons .button:hover {
  background: #144f82;
}
/* ===========================
   Footer
   =========================== */
footer {
  background: #222;
  color: var(--secondary);
  text-align: center;
  padding: 20px;
  font-family: 'museo_sans300', Arial, sans-serif;
  font-weight: 300;
}

footer a {
  color: var(--secondary);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 400;
}

footer a:hover {
  text-decoration: underline;
}

/* ===========================
   Subpage-Header
   =========================== */
.subpage-header {
  background: var(--primary);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo links, Link rechts */
}

.subpage-header img {
  height: 40px;
}

.subpage-header a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'museo_sans500', Arial, sans-serif;
}

.subpage-header a:hover {
  text-decoration: underline;
}
