/* Alles von der normalen Seite ausblenden */
#navigation, #sidebar, #content, #footer {
  display: none;
}

/* Basis-Styling */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

/* Hintergrundbild über die komplette Seite */
body {
  background: linear-gradient(135deg, #f4f4f4, #dfe3e6);
  background-size: cover;
  overflow: hidden;
}

/* Container für beide Boxen */
.auswahlcontainer {
  position: fixed;
  top: 52%;  /* Etwas tiefer für bessere Optik */
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 60px;
  z-index: 1000;
}

/* Einzelne Boxen */
.auswahlbox-einzeln {
  width: 650px;               /* Breiter */
  height: 700px;              /* Höher */
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;         /* Weniger oben, mehr Platz für Bild */
}

/* Autowerkstatt-Hintergrund */
.auswahlbox-einzeln.autowerkstatt {
  background-image: url('https://image.jimcdn.com/app/cms/image/transf/none/path/s027b9d4bfec43ba9/image/i7c8cf73491fac944/version/1767793138/image.jpg');
}

/* Gartentechnik-Hintergrund */
.auswahlbox-einzeln.gartentechnik {
  background-image: url('https://image.jimcdn.com/app/cms/image/transf/none/path/s027b9d4bfec43ba9/image/i3998b2e72f7c1b07/version/1767792507/image.jpg');
}

.auswahlbox-einzeln:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}

/* Button-Styling */
.linkbutton {
  padding: 28px 90px;
  background-color: #ffffff;
  color: #d9480f; /* modernes, wärmeres Orange */
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
}

.linkbutton:hover {
  background-color: #d9480f;
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .auswahlcontainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    transform: none;
    gap: 40px;
    padding: 40px 0;
  }

  .auswahlbox-einzeln {
    width: 90vw;
    height: 380px;
    padding: 20px 16px;
  }

  .linkbutton {
    padding: 18px 36px;
    font-size: 1.3rem;
    max-width: 80vw;
    text-align: center;
    white-space: nowrap;
  }
}