/* 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;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.brand-logo {
  height: 80px;
}

.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;
}

/* MENU */
#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;
  color: #c9a35b;
  text-decoration: none;
  text-align: center;
}

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

/* ANGEBOTE CONTENT */
.offers {
  min-height: calc(100vh - 70px);
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.offers h1 {
  font-size: 42px;
  margin-bottom: 40px;
}

.offer-card {
  border: 1px solid #c9a35b;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.offer-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.offer-card ul {
  list-style: none;
}

.offer-card li {
  margin: 8px 0;
}

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

  .brand-logo {
    height: 40px;
  }

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

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

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

/* 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;
  }
}

/* =========================
   MONATLICHE ARBEITEN
========================= */

.monthly-work {
  margin-bottom: 50px;
}

.monthly-work h2 {
  margin-bottom: 30px;
  font-size: 26px;
}

/* NEBENEINANDER */
.work-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.work-card {
  flex: 1;
  border: 1px solid #c9a35b;
  border-radius: 12px;
  padding: 10px;
  background-color: #111;
}

.work-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Nur am Handy untereinander */
@media (max-width: 768px) {
  .work-grid {
    flex-direction: column;
  }
}