/* © 2025 Benjamin Zandt – www.zandt-benjamin.de
Alle Rechte vorbehalten.

Dieser Quellcode ist urheberrechtlich geschützt nach deutschem Urheberrecht.
Jegliche Nutzung, Vervielfältigung, Veränderung oder Weitergabe ist ohne die
ausdrückliche, schriftliche Genehmigung des Urhebers untersagt.
Zuwiderhandlungen werden rechtlich verfolgt. */

/* =========================================================
   BASIS FÜR KONTAKT + FOOTER
========================================================= */
@font-face {
  font-family: "Afacad Flux";
  src: url("../font/AfacadFlux-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  --gold: #C6A85A;
  --black: #000;
  --white: #fff;
  --grey-1: #888;
  --maxw: 1200px;
  --space-2: 16px;
  --space-4: 40px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Afacad Flux", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.4;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================================
   KONTAKT
========================================================= */
.contact {
  background: var(--black);
  color: var(--white);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 20;
  clear: both;
}

.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-4) var(--space-2);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact__left {
  flex: 1;
  min-width: 280px;
}

.contact__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.contact__logo {
  width: 100%;
  height: auto;
  max-width: 520px;
}

.contact__head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 300;
}

.contact__head h2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: var(--grey-1);
  bottom: 0;
  left: 0;
}

.contact__head h2::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: var(--gold);
  bottom: -1px;
  left: 0;
}

.contact__head p {
  color: #ccc;
}

.contact__list {
  margin-top: 20px;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
}

.contact__row a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact__row a:hover {
  border-bottom-color: var(--gold);
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
}

.social a i {
  color: #fff;
}

.social a:hover i {
  color: var(--gold);
}

/* =========================================================
   FOOTER
========================================================= */
.sitefooter,
footer.sitefooter {
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 20 !important;
  clear: both;
  width: 100%;
  min-height: 72px;
  margin: 0;
  flex-shrink: 0;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px 20px;
  font-size: 0.95rem;
}

.sitefooter__row {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}

.sitefooter span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footerlink {
  color: #fff;
  text-decoration: none;
}

.footerlink:hover {
  color: #C6A85A;
}

.icon-footer {
  width: auto;
  max-width: 18px;
  height: auto;
  max-height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* =========================================================
   RESPONSIVE KONTAKT + FOOTER
========================================================= */
@media (max-width: 900px) {
  .sitefooter__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .sitefooter__row {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .contact.section,
  #kontakt {
    padding-inline: 18px !important;
  }

  .sitefooter {
    padding: 22px 16px !important;
  }

  .sitefooter__row {
    flex-direction: column;
    gap: 10px;
  }
}
