html, body {
    overflow-x: hidden;
    max-width: 100vw;
	  min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

h2 {
  color: #000000;
}
h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-top: 0.3rem;
  color: #585858;
}

h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e19e1c; /* dein Gold */
  bottom: 0;
  left: 0;
  opacity: 0.3;
}

.link-mit-sternchen {
  color: #000;
  text-decoration: none;
  position: relative;
  font-weight: bold;
}

.link-mit-sternchen:hover {
  /* text-decoration: bold; */
}

.sternchen {
  color: #D12E2C;
  font-size: 1.1em;
  margin-left: 4px;
  animation: pulsieren 1.5s infinite ease-in-out;
}

@keyframes pulsieren {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}


.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
.site-footer {
  text-align: center;
  color: #aaa;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid #333;
  background-color: transparent;
}


.fahrten-boxen {
  display: flex;
  flex-direction: row; /* von oben nach nebeneinander */
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap; /* damit es auf kleinen Screens umbricht */
}


.fahrten-kategorie {
    font-size: 1.05rem;
    color: #1A1A1A;
    margin-bottom: 0.2rem;
}


.fahrten-kategorie h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #E19E1C;
}

.fahrten-kategorie ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fahrten-kategorie li {
    font-size: 1.05rem;
    color: #1A1A1A;
    margin-bottom: 0.2rem;
}

    .logo {
      text-align: center;
    }

    .logo img {
      width: 150px;
    }

/* Der Balken entsteht hier – wir fixen das */
.side-menu {
    position: fixed;
    top: 0;
    left: -100vw; /* Vollständig aus dem Viewport! */
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1090;
    transition: left 0.3s ease;
    padding: 2rem 1.5rem;
    margin-top: 55px;
}
.kontakt-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
.side-menu.open {
    left: 0;
}
.blitz-headline {
  max-width: 120px;
  height: auto;
  margin-top: 1.6rem;
}
a {
  color: #E19E1C; /* goldener Farbton */
  text-decoration: none;
}

a:hover {
  color: #21917e; /* helleres Gold beim Hover */
  text-decoration: underline;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    margin-bottom: 2rem;
}

.side-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1080;
}

.menu-overlay.show {
    display: block;
}
/* Mobile Optimierung */
@media only screen and (max-width: 768px) {
  .kontakt-container,
  .kontakt-formular-container {
    max-width: 90%;
  }