/* ——————————————
   Import
   —————————————— */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/* ——————————————
   Variablen
   —————————————— */
:root {
  --gray-100: #000000;
  --gray-85:  #262626;
  --gray-50:  #7f7f7f;
  --gray-10:  #e6e6e6;
  --white:    #ffffff;
  --orange:   #ff8800;
}

/* ——————————————
   Reset & Box-Sizing
   —————————————— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ——————————————
   Basis-Stile
   —————————————— */
body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background: var(--gray-10);
  color: var(--gray-85);
}

a {
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ——————————————
   Layout
   —————————————— */
header {
  max-width: 768px;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--gray-10);
}

header img {
  max-height: 90px;
}
cookie-consent-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      border-top: 1px solid #ccc;
      padding: 15px;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
      display: none;
      z-index: 10000;
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #333;
    }
cookie-consent-banner p {
      margin: 0 0 10px;
      line-height: 1.4;
    }
cookie-consent-banner .buttons {
      display: flex;
      gap: 10px;
    }
    #cookie-consent-banner button {
      padding: 8px 16px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }
    #cookie-consent-accept {
      background-color: #007bff;
      color: #fff;
    }
    #cookie-consent-deny {
      background-color: #6c757d;
      color: #fff;
    }
nav {
  max-width: 768px;
  margin: 1rem auto;
  background: var(--gray-10);
  padding: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

nav li + li {
  margin-top: 0; /* für mobile entfällt */
}

nav a {
  display: block;
  background: var(--gray-85);
  color: var(--white);
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

nav a:hover,
nav a:focus {
  background: var(--orange);
  color: var(--gray-100);
}

main {
  max-width: 768px;
  margin: 2rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  background: var(--gray-10);
  color: var(--gray-85);
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
}

/* ——————————————
   Komponenten
   —————————————— */
button,
.button {
  display: inline-block;
  cursor: pointer;
  background: var(--gray-85);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
}

button:hover,
.button:hover {
  background: var(--orange);
  color: var(--gray-100);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery picture {
  flex: 1 1 45%;
}

.gallery img {
  max-width: 400px;
  height: auto;
}

details {
      border: 2px solid var(--brand-orange);
      border-radius: 8px;
      margin-bottom: 1rem;
      padding: 0.6rem 1rem;
      background: var(--white);
    }

    details[open] {
      background: #fff7f0;
    }

    summary {
      font-weight: 700;
      cursor: pointer;
      outline: none;
    }
    
/* ——————————————
   Media Queries
   —————————————— */
@media (min-width: 768px) {
  nav ul {
    flex-direction: row;
    gap: 0;
  }
  nav li + li {
    margin-left: 10px;
  }
  .gallery picture {
    flex: 1 1 25%;
  }
}