:root {
  --main-bg: #ffffff;
  --accent: #2c5877; /* sanftes Blau für Hundeprojekte */
  --highlight: #ffd166; /* warmer Akzent */
  --text: #232627;
  --font-main: "Segoe UI", "Arial", sans-serif;
  --border-radius: 1.1rem;
  --gap: 2rem;
}
html {
  font-size: 100%;
}
body {
  margin: 0;
  background: var(--main-bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  min-width: 320px;
}
.skip-link {
  position: absolute;
  left: -1000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: var(--highlight);
  color: #28536b;
}
.skip-link:focus {
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75em 1em;
}
header,
footer {
  background: var(--accent);
  color: #fff;
  padding: 1rem 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border-radius: var(--border-radius);
  padding: 0.6em 0.8em;
  transition: background 0.2s;
}
nav a:focus,
nav a:hover {
  background: var(--highlight);
  color: #222;
}
.hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
}
.hamburger .bar {
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
.navigation[hidden] {
  display: none;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: var(--accent);
    position: absolute;
    top: 65px;
    left: 0;
    width: 100vw;
  }
}
.hero {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 56vh;
  padding: 0;
  overflow: hidden;
  background: #fff;
  gap: 0;
}
.hero-split {
  min-height: 100vh;
}
.hero-img-left,
.hero-img-right {
  flex: 1;
  min-width: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-right object,
.hero-img-right svg {
  width: 100%;
  height: 100%;
  max-width: 430px;
}
.hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.601);
  border-radius: var(--border-radius);
  padding: 2rem 2.5rem;
  box-shadow: 0 6px 24px rgba(60, 80, 100, 0.12);
  max-width: 90vw;
  text-align: center;
}
.btn-cta {
  display: inline-block;
  margin-top: 1.25em;
  background: var(--accent);
  color: #fff;
  padding: 0.9em 2em;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.13em;
  border: 0;
  transition: background 0.25s;
}
.btn-cta:focus,
.btn-cta:hover {
  background: var(--highlight);
  color: #232;
}
.intro,
section {
  max-width: 800px;
  margin: 2rem auto 0 auto;
  padding: 0 1.2rem;
}
footer {
  font-size: 0.93em;
  text-align: center;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: 50vh;
  }
  .hero-img-left,
  .hero-img-right {
    min-height: 180px;
  }
  .hero-split {
    min-height: 60vh;
  }
}
@media (max-width: 650px) {
  .hero-img-left,
  .hero-img-right,
  .hero-text {
    padding: 0.5rem;
  }
  .hero-text {
    font-size: 0.97em;
    padding: 1.2rem 0.5rem;
  }
  nav ul {
    position: static;
  }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 2.5rem;
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 1100px;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px rgba(60, 80, 100, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:focus-within,
.card:hover {
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 12px 36px rgba(60, 80, 100, 0.18);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}
.card2 img {
  margin-top: 30px;
  width: 100%;
  height: 900px;
  object-fit: cover;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
}

.card-content {
  padding: 1.3rem 1rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h2 {
  font-size: 1.28em;
  margin-bottom: 0.6em;
  color: var(--accent);
}

.card-content p {
  margin-bottom: 1em;
  font-size: 1em;
  color: var(--text);
}

.card-btn {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6em 1.3em;
  border-radius: 1.6em;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.99em;
  transition: background 0.2s;
}
.card-btn:focus,
.card-btn:hover {
  background: var(--highlight);
  color: #222;
  outline: 2px solid var(--accent);
}
/* Zurück Button */
.aaa:link {
  display: inline-block;
  position: fixed;
  height: 48px;
  width: 48px;
  bottom: 16px;
  right: 16px;
  text-align: center;
  padding-top: 5px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 900;
  background-color: #ffd1661c;
  z-index: 6;
  border-style: solid;
  border-color: #ffd166;
  border-width: 1px;
  border-radius: 10px;
  color: #ffd166 !important;
}

.aaa:hover {
  background-color: #00000045;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
.foo {
  color: #0c0c0c;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 20px;
  margin-right: 20px;
  align-items: center; /* vertikal */
}

.foo:hover {
  opacity: 0.5;
}
.foo2 {
  color: #fff;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 20px;
  margin-right: 20px;
  align-items: center; /* vertikal */
}

.foo2:hover {
  opacity: 0.5;
}
a {
  text-decoration: none;
  color: #2c5877;
}
@media (max-width: 600px) {
  .foo {
    color: #0c0c0c;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 10px;
    margin-right: 10px;
    margin: 0 auto;
  }

  .foo:hover {
    opacity: 0.5;
  }
  .foo2 {
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 auto;
  }

  .foo2:hover {
    opacity: 0.5;
  }
}
.zen {
  margin: 0 auto;
}
.hero-img {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.form-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-container button:hover {
  background-color: #005fa3;
}
input[type="checkbox"] {
  accent-color: #0077cc; /* moderne Browser unterstützen das */
  width: 40px;
  height: 40px;
}
input[type="radio"] {
  accent-color: #0077cc; /* moderne Browser unterstützen das */
  width: 50px;
  height: 50px;
}
input[type="text"] {
  border-color: black;
}
.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;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@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;
  }
}
.zen-footer {
  background: var(--accent, #3f7cac);
  color: #fff;
  padding: 2.2rem 1rem 1.2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
}

.zen-footer__social,
.zen-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.zen-footer__social a,
.zen-footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 999px;
  transition: background 0.15s, outline 0.15s;
  outline: none;
}
.zen-footer__social a:focus-visible,
.zen-footer__links a:focus-visible {
  background: var(--highlight, #ffd166);
  outline: 2px solid #fff;
}

.zen-footer__social img,
.zen-footer__links img {
  display: block;
  max-width: 48px;
  max-height: 48px;
}
.zen-footer__links img {
  max-width: 36px;
  max-height: 36px;
}

.zen-footer__bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.96em;
  color: #fff;
  opacity: 0.87;
}

@media (max-width: 650px) {
  .zen-footer {
    flex-direction: column;
    gap: 1.3rem;
    padding: 1.5rem 0.3rem 0.8rem 0.3rem;
    min-width: 0;
  }
  .zen-footer__social,
  .zen-footer__links {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .zen-footer__bottom {
    margin-top: 1.2rem;
    font-size: 0.91em;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cta-button {
  display: inline-block;
  background-color: #2c5877; /* Hintergrundfarbe */
  color: #ffd166; /* Textfarbe */
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ffd166;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ffd166; /* Hover-Hintergrund */
  color: #2c5877; /* Hover-Textfarbe */
  border-color: #2c5877;
}
.p-orange {
  color: #2c5877;
  text-shadow: 3px 3px 4px #ffd166;
}
.h-orange {
  color: #2c5877;
  text-shadow: 3px 3px 4px #2c5877;
}
blockquote {
  padding: 10px;
  border: thin solid #ffd166;
}
.sond {
  font-size: 72px;
}
