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

/* =========================
   BASIS
========================= */
body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #c9a35b;
}

/* =========================
   HEADER
========================= */
header {
  height: 70px;
  width: 100%;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #000000;
  position: relative;
  z-index: 1000;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 80px;
  width: auto;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* BURGER */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background-color: #c9a35b;
  display: block;
}

/* BURGER MENÜ */
#menu {
  position: absolute;
  top: 70px;
  right: 20px;

  background-color: #000000;
  border: 1px solid #c9a35b;

  display: none;
  flex-direction: column;
  min-width: 220px;

  z-index: 999;
}

#menu.active {
  display: flex;
}

#menu a {
  padding: 15px;
  text-decoration: none;
  color: #c9a35b;
  text-align: center;
}

#menu a:hover {
  background-color: #c9a35b;
  color: #000000;
}

/* =========================
   HERO / BILD
========================= */
.hero {
  height: 300px;
  width: 100%;

  background-image: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("../img/hero.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 42px;
  letter-spacing: 2px;
}

/* =========================
   IMPRESSUM CONTENT
========================= */
.impressum {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.impressum section {
  margin-bottom: 30px;
}

.impressum h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.impressum p,
.impressum a {
  font-size: 16px;
  line-height: 1.6;
}

.impressum a {
  color: #c9a35b;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  border-top: 1px solid #c9a35b;
  padding: 20px;
  background-color: #000000;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
}

.footer-brand {
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #c9a35b;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  header {
    height: 65px;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero {
    height: 220px;
  }

  .hero h1 {
    font-size: 32px;
  }

  #menu {
    right: 10px;
    width: calc(100% - 20px);
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}