* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 70px; /* Exakt die Höhe der Nav */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f8f5f1;
}

/* === FADE IN === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in { opacity: 0; }

.fade-in.visible {
  animation: fadeInUp 0.7s ease forwards;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px; /* Deine gewünschte feste Höhe */
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-content {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible; /* Wichtig: Damit das 10vh Logo nach unten ragen kann */
}

.Logo1 {
  height: 10vh; /* Logo wie gewünscht */
  width: auto;
  display: block;
  position: relative;
  z-index: 1001;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
}

.nav-links-desktop a {
  color: #677e6d;
  font-size: 14px;
  text-decoration: none;
  padding: 0 10px;
}

.nav-links-desktop button {
  color: white;
  background-color: #223928;
  border: none;
  height: 38px;
  min-width: 120px;
  padding: 0 16px;
  margin-left: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #223928;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  border-top: 1px solid #e8e4db;
  animation: fadeIn 0.25s ease forwards;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #223928;
  font-size: 18px;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4db;
  font-weight: 500;
}

.mobile-menu .mobile-kontakt {
  color: white;
  background-color: #223928;
  border: none;
  height: 48px;
  font-size: 15px;
  margin-top: 20px;
  width: 100%;
}

/* === PAGE HEADER === */
.page-header {
  text-align: center;
  padding: 100px 24px 60px 24px; /* Mehr Platz oben für das überstehende Logo */
}

.page-header h3 {
  color: #C69C53;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-header h1 {
  color: #223928;
  font-family: Georgia, 'Times New Roman', Times, serif; /* Schriftart zurückgesetzt */
  font-size: 56px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.1;
}

/* === CONTENT === */
.impressum-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 100px 40px;
}

.impressum-section {
  padding: 40px 0;
}

.impressum-section h2 {
  color: #223928;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-body p {
  color: #677e6d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 6px;
}

.section-body p strong {
  color: #223928;
  font-weight: 500;
}

.section-body a {
  color: #C69C53;
  text-decoration: none;
  font-weight: 500;
}

.divider {
  height: 1px;
  width: 100%;
  background-color: rgb(226, 222, 210);
}

/* === FOOTER === */
.text-center-footer {
  text-align: center;
  background-color: #223928;
  padding: 128px 24px;
}

.text-center-footer h3 {
  color: #f8f5f199;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.text-center-footer h1 {
  color: #F8F5F1;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 48px;
  max-width: 692px;
  margin: 0 auto 16px auto;
}

.text-center-footer h2 {
  font-weight: 500;
  font-size: 18px;
  color: #f8f5f1b3;
  max-width: 692px;
  margin: 0 auto;
}

.text-center-footer button {
  margin-top: 40px;
  background-color: #C69C53;
  border: none;
  padding: 16px 40px;
  color: #e8e4db;
  cursor: pointer;
}

.footer-links {
  background-color: #223928;
  color: #f8f5f199;
  font-size: 13px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: #f8f5f199;
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  nav { padding: 0 16px; }
  .nav-links-desktop { display: none; }
  .hamburger { display: flex; }
  .page-header h1 { font-size: 36px; }
  .text-center-footer h1 { font-size: 32px; }
  .Logo1 { height: 8vh; }
}