/* Basis-Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-top: 100px;
}

/* Header */
.header {
  background-color: #3e3a39;
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.shrink {
  padding: 0.6rem 1rem;
  background-color: rgba(62, 58, 57, 0.8);
}

.logo {
  height: 50px;
}

.nav .menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  display: none;
  cursor: pointer;
}

.nav .menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav .menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile Menü */
@media (max-width: 768px) {
  .nav .menu {
    flex-direction: column;
    background-color: rgba(62, 58, 57, 0.95);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    display: none;
    padding: 1rem;
    z-index: 999;
    text-align: center;
    align-items: center;
  }

  .nav .menu.active {
    display: flex;
  }

  .nav .menu-toggle {
    display: block;
  }

  .nav .menu li {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav .menu li a {
    display: inline-block;
    width: 100%;
  }
}

/* Inhalte */
.intro-box, .why-box {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.intro-box {
  background-color: rgba(211, 211, 211, 0.9);
  text-align: center;
}

.intro-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.intro-box p {
  font-size: 1.1rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #a8e6ff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #90d9f0;
}

.why-box {
  background-color: rgba(255, 255, 255, 0.9);
  color: #222;
  text-align: center;
}

.why-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.why-box p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background-color: #a8e6ff;
  color: #000;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner button {
  margin-left: 1rem;
  background: #a8e6ff;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-banner a {
  color: #000;
  text-decoration: underline;
}

.checkbox-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}

.checkbox-wrapper input {
  margin-bottom: 0.5rem;
}

.checkbox-wrapper label a {
  color: #000;
  text-decoration: underline;
}

