/* ---------------*/
/* --- general ---*/
/* ---------------*/

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

body {
  background-color: #678815;
  font-family: system-ui, Calibri, sans-serif;
}


/* ----------*/
/* - header -*/
/* ----------*/

/* header image row */
.header-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

@media (max-width: 768px) {
  .header-image {
    height: 20vh;
  }
}

.header-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide {
    opacity: 0;
    transition: opacity 0.0s ease;
}

.slide.active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .slide {
        transition: none;
    }
}

/* header navbar */
.navbar {
  display: flex;
  justify-content: space-between; /* position group of items along primary axis */
  align-items: center;            /* position single items along cross axis */
  flex-wrap: wrap;

  padding: 6px 32px 2px 32px;
  background-color: #111;
  color: white;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  width: 50px;
  filter: invert(1);
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

/* Burger hidden on desktop */
.burger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  filter: invert(1);
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;

    flex-direction: column;
    background: #111;
    border: 1px solid 111;
    padding: 10px;

    display: none; /* hidden by default */
  }

  .nav-links.open {
    display: flex;
  }
}

/*
.nav-actions .btn {
  padding: 8px 14px;
  background: #4f46e5;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-actions .btn:hover {
  background: #4338ca;
}
*/


/* --------------------*/
/* --- main content ---*/
/* --------------------*/

/* methoden.html */
.accordion-orchestra {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.accordion {
  flex: 1 1 0;
  min-width: 0;   /* THIS is the key fix */
  padding: 20px;
  flex-basis: 400px;
}

.accordion-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.accordion-summary::-webkit-details-marker {
  display: none; /* Hide the default marker if you want a custom one */
}

.accordion-summary-image {
  width: 256px;
  height: 256px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* referenzen.html */
.referenz-logo {
    height: 90px;
    width: auto;
}

/* kontakt.html */
.mailadresse {
    height: 36px;
    width: auto;
}


/* --------------*/
/* --- footer ---*/
/* --------------*/
/* footer navbar */
/* ... */

/* Abstand in Linklisten erhöhen (E)*/
.linkliste li {
    margin-bottom: 6px;
}