:root {
  --bj_grau1: #f1f1f1;
  --bj_weiß: #fafafa;
  --bj_dkblau: #071e42;
  --bj_graublau: #536171;
  --bj_accent: #2563eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  text-decoration: none;
  font-family: Inter, Segoe UI, system-ui, Roboto, -apple-system, "Helvetica Neue", Arial;
  font-size: 16px;
  color: var(--bj_dkblau);
  background: var(--bj_grau1);
}
div {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
}
th {
  text-align: left;
}


/* !--Links */
#Links {
  width: 15vw;
}


/* !--Mitte */
#Mitte {
  width: 70vw;
}


/* !-Kopf */
#Kopf {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px; */
}

.navigation {
  margin-top: 1vw;
  margin-bottom: 20vw;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.66);
}
/* .navigation table {
  padding-bottom: 20vw;
} */
.navigation td {
  padding: 1vw;
}

.kopfHintergrund img {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 73.7vw;
}


/* !-Haupt */
#Haupt {
  margin-top: 20px;
}

#Ahoi {
  margin-bottom: 5vw;
  background-color: orange
}

#Überuns {
  margin-bottom: 5vw;
}

#Eindrücke {
  margin-bottom: 5vw;
  background-color: orange;
}
#Eindrücke table {
  width: 100%;
}
#Eindrücke td {
  padding: 2vw;
  margin: auto;
  background-color: var(--bj_dkblau);
  color: orange;
}

#Kontakt {
  margin-bottom: 5vw;
}
#Kontakt table {
  width: 100%;
}
#Kontakt td,#Kontakt th {
  border: 1px solid var(--bj_dkblau);
}


/* !-Fuß */
#Fuss {
  margin-top: 28px;
  background-color: orange;
  color: var(--bj_graublau);
  /* font-size: 0.9rem; */
  text-align: center;
}

#Fuss a {
  color: var(--bj_graublau);
}

/* !--Rechts */
#Rechts {
  width: 15vw;
}


.brand {
  font-weight: 700;
  font-size: 1.125rem;
}
nav a {
  color: var(--bj_graublau);
  text-decoration: none;
  margin-left: 12px;
  font-size: 0.95rem;
}
.card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(20, 30, 40, 0.06);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.btn {
  display: inline-block;
  padding: 8px 12px;
  background: var(--bj_weiß);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}



/* !--RWD */
@media (max-width: 520px) {
  #Kopf {
    flex-direction: column;
    align-items: flex-start;
  }
}
