/* Allgemeine Stile nach WCAG */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Standard-Textgröße und Kontrast */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #121212;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 18px;
  border: 2px solid black;
  padding: 5px;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #ff9800;
  outline: 2px solid orange;
  text-decoration: underline;
  border-radius: 5px;
  padding: 5px;
}

/* Hamburger Menü */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: orange;
  font-size: 1.5rem;
  cursor: pointer;
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 4px;
  border-radius: 5px;
  z-index: 10;
}

/* Hero-Bereich */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: url("image/icon/domain-verkauf-ecke-hunde_1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 2rem;
}

/* Beispiel für den Text im Hero */
.hero-content h1 {
  font-size: 5vw;
  color: orange;
}

.hero-content p {
  margin: 1rem 0;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  background: orange;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  outline: 2px solid orange;
}

.cta-button:hover,
.cta-button:focus {
  background: #ff9900bd;
  outline: 2px solid #ff9900bd;
}

/* Formularelemente */
input:focus,
textarea:focus,
button:focus {
  outline: 3px solid orange;
  /* Visuelle Hervorhebung des Fokus */
  background-color: #333;
  /* Hintergrundfarbe bei Fokus */
}

/* Infobereich */
.info {
  padding: 3rem;
  text-align: center;
}

/* Kontaktbereich */
.contact {
  padding: 1rem;
  background: #121212;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.contact label {
  font-size: 1.1rem;
  color: orange;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  width: 100%;
  border: 2px solid orange;
  background: #222;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
}

.contact button {
  padding: 0.8rem;
  background: orange;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 18px;
}

.contact button:hover,
.contact button:focus {
  background: #ff9800;
  outline: 2px solid #ff9800;
}

/* Footer */
footer {
  padding: 1.5rem;
  text-align: center;
  background: #121212;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

footer ul li a {
  color: orange;
  text-decoration: none;
}

footer ul li a:hover,
footer ul li a:focus {
  color: #ff9800;
  outline: 2px solid orange;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    text-align: center;
    background: #121212;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
  }

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

/* Anpassungen für Barrierefreiheit */
label[for]:not([for=""]) {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: orange;
}

/* Tastatur-Fokus */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid orange;
  /* Klare Fokus-Konturen */
  background-color: #333;
  /* Hintergrundfarbe im Fokus */
}
fieldset {
  padding: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .cc {
    display: none;
  }
}

@media screen and (max-width: 1395px) {
  .cc1 {
    display: none;
  }
}

@media screen and (max-width: 6000000px) {
  .cc2 {
    display: none;
  }
}
input[type="radio"],
input[type="checkbox"] {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}
body {
  accent-color: #fc6736;
}

/* barrierefreie Button im Formular */
#reset-btn {
  background-color: #f44336;
  color: black;
  width: 100%;
  border-radius: 5px;
}

#reset-btn:hover,
#reset-btn:focus {
  background-color: #d67373;
  outline: 2px solid #000;
}

#submit-btn {
  background-color: #54b557;
  color: black;
  width: 100%;
  border-radius: 5px;
  opacity: 0;
  animation: fadeIn 9s forwards;
  /* Button erscheint nach 5 Sekunden */
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

#submit-btn:hover,
#submit-btn:focus {
  background-color: #579259;
  outline: 2px solid #000;
}

/* Sprunglinks Standardmäßig ausblenden */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  z-index: 100;
}

/* Sprunglinks Sichtbar machen, wenn der Fokus darauf liegt */
.skip-link:focus {
  top: 10px;
}
a {
  color: #ff9800;
}
.icon {
  padding: 10px;
}
.icon:hover {
  opacity: 0.3;
}
/* Zurück Button */
.aaa {
  display: inline-block;
  position: fixed;
  height: 48px;
  width: 48px;
  bottom: 16px;
  right: 16px;
  text-align: center;
  padding-top: 8px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 900;
  color: orange;
  background-color: #5b545442;
  z-index: 6;
  border: none;
}

.aaa:hover {
  color: #97020255;
  background-color: #00000045;
  border: none;
}
summary {
  color: #ff9800;
}
/* Neu */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
#contact label {
  color: #ffb447;
}
input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: #a3a3a3;
}
#submit-btn {
  background-color: #54b557;
  color: black;
  width: 100%;
  border-radius: 5px;
  opacity: 0;
  animation: fadeIn 5s forwards;
  /* Button erscheint nach 5 Sekunden */
}
h3 {
  text-align: center;
  color: #ff9800;
}
.logo {
  z-index: 10;
}
