@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap");

/* ===============================
   1) Global
   =============================== */
:root {
  --main-brand-color: #d90416;
  --text-color: #111926;
  --text-color-ImpressumDatenschutz: #555;
  --modern-line: #d9e1ea;
  --modern-shadow: 0 20px 45px rgba(10, 24, 41, 0.12);
  --layout-max-width: 1320px;
  --layout-gutter: 24px;
  --section-space: 30px;
  --section-title-size: clamp(2rem, 3.8vw, 2.9rem);
  --section-subtitle-size: clamp(1rem, 0.5vw + 0.9rem, 1.12rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Poppins", sans-serif;
  font-size: 17px;
  color: var(--text-color);
  background: #fff;
}

main > section {
  position: relative;
}

/* ===============================
   2) Header
   =============================== */
#header-container {
  position: relative;
  z-index: 1200;
}

#header-container header {
  margin-bottom: 0;
  padding: 10px 0;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(17, 25, 38, 0.08);
}

#header-container .header_text {
  width: min(var(--layout-max-width), calc(100% - var(--layout-gutter)));
  margin: 0 auto;
}

#header-container nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 30px);
}

#header-container nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 26px);
  font-size: 15px;
  margin: 0;
  margin-left: auto;
  padding-left: 0;
}

#header-container .nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

#header-container nav img {
  width: auto;
  height: 104px;
  max-width: 220px;
  object-fit: contain;
  border: none;
  display: block;
}

#header-container nav ul > li > a {
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  padding: 3px;
}

#header-container nav ul > li > a::after {
  content: "";
  height: 3px;
  width: 0;
  opacity: 0;
  border-radius: 999px;
  background: var(--main-brand-color);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.2s ease, opacity 0.2s ease;
}

#header-container nav ul > li > a:hover::after {
  width: 100%;
  opacity: 1;
}

#toggle_button {
  display: none;
}

label[for="toggle_button"] {
  display: none;
}

label[for="toggle_button"] span {
  font-size: 40px;
}

/* ===============================
   3) Hero
   =============================== */
#home_section {
  width: min(var(--layout-max-width), calc(100% - var(--layout-gutter)));
  margin: 24px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 22px;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  background:
    linear-gradient(140deg, rgba(17, 25, 38, 0.95), rgba(17, 25, 38, 0.88)),
    linear-gradient(120deg, rgba(217, 4, 22, 0.18), rgba(217, 4, 22, 0));
  color: #f9fbff;
  box-shadow: var(--modern-shadow);
  overflow: hidden;
}

#home_section::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(217, 4, 22, 0.16);
  filter: blur(10px);
}

.hero-eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  color: #f3f7ff;
}

.home_container h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.07;
  font-weight: 800;
  color: #fdfdff;
}

.hero-highlight {
  color: var(--main-brand-color);
}

.home_container .subheading {
  margin-top: 18px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: #d3dae6;
  max-width: 720px;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta .btn {
  font-weight: 700;
  border-width: 2px;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.hero-cta .btn-danger {
  background: linear-gradient(120deg, var(--main-brand-color), #ef2d3f);
  border-color: transparent;
}

.hero-cta .btn-danger:hover {
  background: linear-gradient(120deg, #b00312, var(--main-brand-color));
}

.hero-cta .btn-outline-dark {
  color: #f4f8ff;
  border-color: rgba(244, 248, 255, 0.62);
}

.hero-cta .btn-outline-dark:hover {
  color: #0f1724;
  background: #f4f8ff;
  border-color: #f4f8ff;
}

.hero-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #dce4f1;
}

.home_octagonWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: clamp(280px, 36vw, 460px);
  height: clamp(280px, 36vw, 460px);
  background: transparent;
}

.home_octagon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Wenn ein echtes Foto eingefügt wird: clip-path wieder aktivieren */
.home_octagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.home_octagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_octagon .octagon-placeholder {
  font-size: 100px;
  color: var(--main-brand-color);
  opacity: 0.5;
}

/* ===============================
   4) Shared Section Container
   =============================== */
#booking_section,
#faq_section {
  width: min(var(--layout-max-width), calc(100% - var(--layout-gutter)));
  margin: var(--section-space) auto 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* ===============================
   5) Booking Section
   =============================== */
#booking_section h2 {
  font-size: var(--section-title-size);
  color: #0f1828 !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
}

#booking_section .text-center > p.text-muted {
  font-size: var(--section-subtitle-size) !important;
  line-height: 1.5;
}

/* Info card (left) */
#booking_section .booking-info-card {
  background: #ffffff;
  border: 1px solid #e4e7eb !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
  height: 100%;
}

#booking_section .booking-info-card h3 {
  font-weight: 700;
  font-size: clamp(1.3rem, 1vw + 1rem, 1.55rem);
  line-height: 1.2;
}

#booking_section .booking-info-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}

#booking_section .booking-info-card .bi {
  color: var(--main-brand-color);
}

#booking_section .booking-info-card a:hover {
  color: var(--main-brand-color) !important;
}

/* Info checklist */
#booking_section .hb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

#booking_section .hb-checklist li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

#booking_section .hb-checklist i {
  color: var(--main-brand-color);
  line-height: 1.35;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

/* Form card (right) */
#booking_section .booking-form-card {
  background: #ffffff !important;
  border: 1px solid #e4e7eb !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

#booking_section .form-label {
  color: #111827;
  font-size: 0.89rem;
  font-weight: 600;
}

#booking_section .form-control,
#booking_section .form-select {
  border: 1px solid #d6dce3;
  border-radius: 0.65rem;
  min-height: 46px;
  font-size: 0.92rem;
  color: #1f2937;
  background-color: #fff;
  box-shadow: none !important;
  font-family: "Manrope", "Poppins", sans-serif;
}

#booking_section textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

#booking_section .form-control:focus,
#booking_section .form-select:focus {
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 4, 22, 0.12) !important;
}

#booking_section .btn-brand {
  background: var(--main-brand-color);
  border: 1px solid var(--main-brand-color);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Manrope", "Poppins", sans-serif;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

#booking_section .btn-brand:hover {
  background: #b80510;
  border-color: #b80510;
  color: #fff;
}

.booking-form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
}

.booking-form-status.is-success {
  color: #166534;
  background: #dcfce7;
  border-color: #86efac;
}

.booking-form-status.is-error {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fca5a5;
}

/* Flatpickr theme override */
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange {
  background: var(--main-brand-color) !important;
  border-color: var(--main-brand-color) !important;
}

.flatpickr-calendar .flatpickr-day.inRange {
  background: rgba(217, 4, 22, 0.12) !important;
  border-color: rgba(217, 4, 22, 0.12) !important;
  box-shadow: -5px 0 0 rgba(217, 4, 22, 0.12), 5px 0 0 rgba(217, 4, 22, 0.12) !important;
}

.flatpickr-calendar .flatpickr-day:hover {
  background: rgba(217, 4, 22, 0.08) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays {
  background: var(--main-brand-color) !important;
}

.flatpickr-current-month {
  background: var(--main-brand-color) !important;
  color: #ffffff !important;
}

.flatpickr-current-month .cur-month,
.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: rgba(0, 0, 0, 0.15) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #ffffff !important;
}

.flatpickr-weekday {
  background: var(--main-brand-color) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Dropdown (Monat/Jahr Auswahl) */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #ffffff !important;
  color: #111827 !important;
  border: none;
}

.flatpickr-current-month .flatpickr-yearDropdown-years {
  background: #ffffff !important;
  color: #111827 !important;
  border: none;
  margin-left: 0.35rem;
  padding: 0 0.2rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.flatpickr-calendar.has-custom-year-dropdown .flatpickr-current-month .numInputWrapper {
  display: none !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
  background: #ffffff !important;
  color: #111827 !important;
}

.flatpickr-current-month .flatpickr-yearDropdown-years option {
  background: #ffffff !important;
  color: #111827 !important;
}

.flatpickr-current-month input.cur-year {
  background: transparent !important;
}

.flatpickr-current-month .arrowUp,
.flatpickr-current-month .arrowDown {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}

.flatpickr-current-month .numInputWrapper span {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.flatpickr-current-month .numInputWrapper span::after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}

/* ===============================
   6) FAQ
   =============================== */
#faq_section h2 {
  font-size: var(--section-title-size);
  color: #0f1828 !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em;
}

#faq_section .text-center > p.text-muted {
  font-size: var(--section-subtitle-size) !important;
  line-height: 1.5;
}

#faq_section details {
  border: 1px solid var(--modern-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none !important;
}

#faq_section .faq-card {
  background: #ffffff;
  border: 1px solid #e4e7eb !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
  padding: 16px;
}

#faq_section details[open] {
  border-color: rgba(217, 4, 22, 0.45);
  box-shadow: 0 8px 18px rgba(16, 33, 55, 0.08) !important;
}

#faq_section details p {
  font-size: 0.94rem;
  line-height: 1.48;
}

#faq_section summary {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
}

#faq_section summary::-webkit-details-marker {
  display: none;
}

#faq_section summary::after {
  content: "+";
  float: right;
  color: var(--main-brand-color);
  font-size: 1.2rem;
  line-height: 1;
}

#faq_section details[open] summary::after {
  content: "−";
}

/* ===============================
   7) Footer
   =============================== */
#footer-container footer.bg-dark {
  margin-top: 30px !important;
  border-radius: 0;
  background: #212529 !important;
}

#footer-container .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.88;
}

#footer-container .nav-link:hover {
  opacity: 1;
  color: #ffffff !important;
}

/* ===============================
   8) Back to Top
   =============================== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--main-brand-color), #f33245);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#backToTop .bi {
  font-size: 28px;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #b00312, var(--main-brand-color));
}

/* ===============================
   9) Legal pages
   =============================== */
.impressum_datenschutz_container {
  padding-top: 0;
  padding-bottom: 20px;
}

.impressum_header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 15px;
  text-align: center;
}

.impressum_title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
}

.impressum_subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-color-ImpressumDatenschutz);
}

.impressum_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.impressum_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.impressum_card_full {
  grid-column: 1 / -1;
}

.impressum_card_title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-color);
}

.impressum_dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 15px;
  margin: 0;
}

.impressum_dl dt {
  font-weight: 600;
}

.impressum_dl dd {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color-ImpressumDatenschutz);
}

.impressum_text {
  line-height: 1.7;
  color: var(--text-color-ImpressumDatenschutz);
}

.impressum_datenschutz_container a {
  color: var(--main-brand-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.impressum_datenschutz_container a:hover {
  border-bottom-color: currentColor;
}

.impressum_social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.impressum_list {
  margin: 0;
  padding-left: 1.1rem;
}

.impressum_list li {
  margin-bottom: 0.4rem;
}

.legal-page {
  min-height: auto !important;
  height: auto !important;
  display: block !important;
}

.legal-page main {
  min-height: auto !important;
  height: auto !important;
}

.impressum_datenschutz_section,
.impressum_datenschutz_section h1,
.impressum_datenschutz_section h2,
.impressum_datenschutz_section h3,
.impressum_datenschutz_section h4,
.impressum_datenschutz_section p,
.impressum_datenschutz_section li,
.impressum_datenschutz_section a,
.impressum_subtitle,
.impressum_title {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===============================
   10) Responsive
   =============================== */
@media only screen and (max-width: 1024px) {
  #home_section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-meta {
    justify-content: center;
  }
}

/* Collapsed navbar */
@media only screen and (max-width: 1399.98px) {
  #header-container .header_text {
    width: 100%;
    padding: 0;
  }

  #header-container header {
    padding: 8px 0 10px;
  }

  #header-container nav {
    position: relative;
    min-height: 94px;
    justify-content: center;
    gap: 0;
  }

  #header-container nav ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1301;
    margin-top: 0;
    padding: 14px 12px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
    display: none;
  }

  #header-container nav ul > li {
    width: 100%;
    text-align: center;
  }

  #header-container nav ul > li > a {
    display: inline-block;
  }

  label[for="toggle_button"] {
    display: block;
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    background: #ffffff;
    cursor: pointer;
  }

  label[for="toggle_button"] span {
    font-size: 31px;
  }

  #toggle_button:checked ~ ul {
    display: flex;
  }

  #header-container nav img {
    height: 84px;
    width: auto;
    max-width: 168px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px), only screen and (max-width: 1024px) and (orientation: landscape) {
  :root {
    --mobile-card-start: 21px;
  }

  label[for="toggle_button"] {
    left: var(--mobile-card-start);
  }

  #header-container nav ul {
    left: 0;
    right: 0;
    top: calc(100%);
    border-radius: 0;
    padding: 16px 12px;
    border-top: 1px solid rgba(17, 25, 38, 0.08);
    box-shadow: 0 8px 20px rgba(17, 25, 38, 0.12);
  }

  #header-container nav img {
    height: 80px;
    max-width: 156px;
  }

  #home_section,
  #booking_section,
  #faq_section {
    width: calc(100% - 18px);
    border-radius: 16px;
  }

  #home_section {
    margin-top: 14px;
    padding: 22px 16px;
    gap: 18px;
    text-align: left;
  }

  #booking_section h2,
  #faq_section h2 {
    font-size: clamp(1.7rem, 5.4vw, 2.15rem) !important;
  }

  #booking_section .text-center > p.text-muted,
  #faq_section .text-center > p.text-muted {
    font-size: 0.98rem !important;
  }

  #booking_section .booking-info-card,
  #faq_section .faq-card {
    padding: 1.05rem !important;
  }

  #booking_section .booking-info-card p,
  #faq_section details p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  #booking_section .booking-form-card {
    border-radius: 0.85rem !important;
  }

  #booking_section .booking-info-card h3 {
    font-size: 1.25rem;
  }

  .home_octagonWrap {
    order: 1;
    width: min(72vw, 300px);
    height: min(72vw, 300px);
  }

  .home_container h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.12;
  }

  .home_container .subheading {
    margin-top: 14px;
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.45;
  }

  .hero-eyebrow {
    margin-left: 0;
    margin-right: auto;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 7px 12px;
  }

  .hero-cta {
    margin-top: 20px;
    gap: 10px;
    justify-content: flex-start;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding-top: 0.78rem;
    padding-bottom: 0.78rem;
  }

  .hero-meta {
    margin-top: 16px;
    gap: 8px;
    justify-content: flex-start;
  }

  .hero-meta span {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 7px 10px;
  }
}

@media (min-width: 768px) {
  .impressum_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .impressum_dl {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1024px) {
  .impressum_datenschutz_container.container {
    width: calc(100% - 18px);
    max-width: none;
    margin-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .impressum_header {
    margin-bottom: 18px;
    padding: 0 8px 12px;
  }

  .impressum_title {
    font-size: clamp(1.4rem, 4.8vw, 1.85rem);
    line-height: 1.2;
  }

  .impressum_subtitle {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .impressum_card {
    padding: 16px;
    border-radius: 14px;
  }

  .impressum_card_title {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .impressum_datenschutz_section h3 {
    font-size: 1.02rem;
    margin-top: 0.95rem;
  }

  .impressum_datenschutz_section h4 {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  .impressum_text,
  .impressum_datenschutz_section p,
  .impressum_datenschutz_section li,
  .impressum_dl dd {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .impressum_dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===============================
   11) Nav Social Links (Burger-Menü)
   =============================== */
.nav-social-row {
  display: none !important;
}

@media only screen and (max-width: 1399.98px) {
  #header-container nav ul li.nav-social-row {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0.6rem auto 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(217, 4, 22, 0.18);
    list-style: none;
    text-align: center;
  }

  .nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    color: #1f2937;
    background: none;
    border: none;
    transition: color 0.18s ease;
  }

  .nav-social-link:hover {
    color: var(--main-brand-color);
  }
}
