/* Grundreset */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-family: 'M PLUS Rounded 1c', Arial, sans-serif;
  background: #f0f0f0;
  color: #152536;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.logo-bar {
  width: 100%;
  background-color: #152536;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position:fixed;
}

.logo {
  height: 40px;
  margin-left: 20px;
}
.impressum-link {
  margin-right: 20px;
}
.impressum-link img {
  height: 24px;
  width: auto;
}

/* Inhalte mit 20px Rand links/rechts */
.content {
  width: 100%;
  padding: 0 20px;
}

.employee-row {
	padding-top:63px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.employee-photo {
  width: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.name-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.name-section h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #152536;
}
.name-section h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
}
.name-section h3 {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
}

/* Button-Container */
.button-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: -5px 0 30px;
  gap: 10px; /* Abstand zwischen den Buttons */
}

.button {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 20px 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #1AA179;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.button:hover {
  background-color: #188c6b;
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.button:active {
  transform: scale(0.98);
}

.map-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
