body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #fff;
}

header {
  background-color: #1c1c1c;
  color: #ffcc66;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header li a {
  color: #ffcc66;
  z-index: 1000;
}
header p {
  color: beige;
  font-size: 2rem;
 
}


footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 0.9rem;
}

footer a {
  color: #ffcc66;
  text-decoration: none;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.hero {
  background: url('IMG_3119.PNG') no-repeat center center/cover;
  padding: 10rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #444;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #666;
}

.info-boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #1a1a1a;
}

.box {
  max-width: 300px;
  text-align: center;
}
.box p {
  color: beige;

}

.box a {
  margin-bottom: 1rem;
  color: #ffcc66;
}

.cta-button {
  background-color: #444;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 transparent;
}

.cta-button:hover {
  background-color: #ffcc66;
  color: #000;
  box-shadow: 0 0 15px #ffcc66;
}


@media (max-width: 768px) {
  .info-boxes {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
  }
}


/* Container für das Kontaktformular */
.contact-container {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 350px;
  text-align: center;
  margin: 0 auto;
}

.contact-container h1 {
  color: navajowhite;
}

/* Eingabefelder und Textbereich */
.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: blanchedalmond;
}

/* Absenden-Button */
.contact-container button {
  background: navajowhite;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background: antiquewhite;
}

/* Link zurück zur Startseite */
.contact-container .back-button {
  display: block;
  margin-top: 15px;
  text-decoration: none;
  color: navajowhite;
  font-size: 14px;
}

.contact-container .back-button:hover {
  text-decoration: underline;
}

.arbeit {
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: beige ;
}


.impressum {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #2a2a2a;
  color: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  font-size: 1rem;
  line-height: 1.6;
}

.impressum h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffcc66;
}


.faq {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #2a2a2a;
  color: #f1f1f1;
  border-radius: 12px;
}

.faq h2 {
  text-align: center;
  color: #ffcc99;
  margin-bottom: 1.5rem;
}

details {
  background-color: #1e1e1e;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

summary {
  font-weight: bold;
  font-size: 1.1rem;
  color: #ffcc99;
}

details[open] summary {
  color: #ffffff;
}


.about {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffcc66;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 3rem;
  color: #F0E68C;
}

.about-header p {
  font-size: 1.3rem;
  color: beige;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 2rem;
  color: #F0E68C;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: beige;
}

.values .value-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.value-box {
  background: #F0E68C ;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-box span {
  font-size: 2.5rem;
}

.value-box h3 {
  margin-top: 10px;
  font-size: 1.4rem;
  color: black;
}

.value-box p {
  font-size: 1rem;
  color: #555;
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-footer {
  text-align: center;
  font-style: italic;
  color: #ffcc66;
  margin-top: 30px;
}









.slider {
  position: relative;
  max-width: 300px;
  width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;

}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Verstecke Inputs */
.slider input {
  display: none;
}

/* Slide-Positionen */
#slide1:checked ~ .slides {
  transform: translateX(0%);
}
#slide2:checked ~ .slides {
  transform: translateX(-100%);
}
#slide3:checked ~ .slides {
  transform: translateX(-200%);
}

/* Navigation-Pfeile */
.navigation label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background-color: rgba(0,0,0,0.4);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
}

.navigati on label:hover {
  background-color: rgba(0,0,0,0.7);
}

.navigation .prev {
  left: 10px;
}

.navigation .next {
  right: 10px;
}

/* Nur die richtigen Pfeile anzeigen */
.navigation label {
  display: none;
}

#slide1:checked ~ .navigation label[for="slide3"].prev,
#slide1:checked ~ .navigation label[for="slide2"].next,
#slide2:checked ~ .navigation label[for="slide1"].prev,
#slide2:checked ~ .navigation label[for="slide3"].next,
#slide3:checked ~ .navigation label[for="slide2"].prev,
#slide3:checked ~ .navigation label[for="slide1"].next {
  display: block;
}





.agb h1 {
  color: goldenrod;
}

.agb u {
  color: #ffcc99;
}

.agb h2 {
  color: goldenrod;
}
.agb p {
  color: beige;
}
.agb h3 {
  color: goldenrod;
}
.agb h4 {
  color: navajowhite;
}
.agb h5 {
  color: floralwhite;
}




#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
  display: none;
  font-size: 16px;
  z-index: 9999;
}

.cookie-content {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-buttons {
  margin-top: 10px;
}

.cookie-buttons button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

#accept-all {
  background-color: #4CAF50;
  color: white;
}

#accept-all:hover {
  background-color: #45a049;
}

#accept-necessary {
  background-color: #555;
  color: white;
}

#accept-necessary:hover {
  background-color: #444;
}


.cookie-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 8px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cookie-container h1 {
  color: #333;
}

.cookie-container p {
  margin: 15px 0;
  color: #555;
}

.cookie-buttons {
  margin: 20px 0;
}

.cookie-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

#accept-all {
  background-color: #4CAF50;
  color: white;
}

#accept-all:hover {
  background-color: #45a049;
}

#accept-necessary {
  background-color: #555;
  color: white;
}

#accept-necessary:hover {
  background-color: #444;
}

#reset-consent {
  background-color: #e53935;
  color: white;
}

#reset-consent:hover {
  background-color: #c62828;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #2196f3;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

#status-message {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}
