/* ============================================
   VARIABLEN
============================================ */
:root {
  /* Farben */
  --primary-beige: rgb(219, 208, 175);
  --link-blue: rgb(0, 153, 255);
  --dark-bg: #222;
  --light-bg: #ffffff;

  /* Abstände */
  --spacing-xs: 8px;
  --spacing-sm: 15px;
  --spacing-md: 25px;
  --spacing-lg: 50px;
  --spacing-xl: 200px;

  /* Schriftgrößen */
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 20px;

  --text-size: 1rem;
  --ratio: 1.5;
}

/* ============================================
   BASIS-STYLES
============================================ */
html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--primary-beige);
}

body {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
}

h1 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* ============================================
   LAYOUT
============================================ */
.header-bild {
  display: block;
  width: 100%;
}

.row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

/* ============================================
   BILDER
============================================ */
.bilder {
  width: 50%;
  height: auto;
}

.name-und-logos {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.logos-container {
  display: flex;
  gap: 10px;
}

.logos {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   TEXT & LINKS
============================================ */
.text,
.Kontakt {
  flex: 1;
  font-size: var(--text-base);
  padding: var(--spacing-lg) var(--spacing-xl);
}

.Kontakt {
  padding-left: var(--spacing-xl);
  padding-right: var(--spacing-xl);
}

.link,
.linkAGB {
  color: var(--link-blue);
}

/* ============================================
   NAVIGATION
============================================ */
.navigation {
  left: 50%;
  position: relative;
  top: 500px;
  transform: translateX(-50%);
  z-index: 10;
}

.navigation button {
  background-color: transparent;
  border: none;
  clip-path: polygon(0% 0%, 100% 0%, 50% 75%);
  color: transparent;
  cursor: pointer;
  font-weight: lighter;
  height: 120px;
  position: absolute;
  width: 250px;
}

.navigation button span {
  left: 50%;
  position: absolute;
  top: 0px;
  transform: translateX(-50%);
}

/* Navigation Button Positionen */
#btnUeberMich {
  font-size: var(--text-lg);
  left: 270px;
  top: 225px;
}

#btnWinter {
  font-size: var(--text-lg);
  left: 520px;
  top: 225px;
}

#btnSommer {
  font-size: var(--text-lg);
  left: 775px;
  top: 225px;
}

#btnJakobsweg {
  font-size: var(--text-lg);
  left: 390px;
  top: 325px;
}

#btnJahreszeitenessen {
  font-size: var(--text-lg);
  left: 645px;
  top: 325px;
}

#btnKontakt {
  font-size: var(--text-lg);
  left: 520px;
  top: 415px;
}

/* ============================================
   TABELLEN
============================================ */
.table {
  border-collapse: separate;
  border-spacing: var(--spacing-lg) 0;
}

/* ============================================
   FORMULARE
============================================ */
form {
  background: var(--primary-beige);
  border-radius: 10px;
  box-shadow: 5px 4px 15px rgba(0, 0, 0, 0.334);
  margin: 20px auto;
  max-width: 600px;
  padding: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  color: var(--text-color);
  font-size: var(--text-sm);
  font-weight: bold;
  margin-bottom: 0px;
}

.form-input,
.form-textarea {
  background-color: rgb(207, 197, 165);
  border: 2px solid var(--primary-beige);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  font-size: var(--text-sm);
  height: 40px;
  padding: 12px var(--spacing-sm);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #e1e1e1;
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  background-color: rgb(207, 197, 165);
  border: none;
  border-radius: 5px;
  color: black;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: bold;
  padding: 14px 30px;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  box-shadow: 0 4px 12px rgba(61, 78, 95, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background-color: var(--primary-beige);
  color: black;
  padding: 30px 0;
  margin-top: 0px;
}

.footer-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 15px;
}