﻿/* Start CSS fuer Anzeige der Seiten mit grafischen Elementen*/
<style type="text/css">
.unterkuft1-hund {
    --ach-forest: #0077b6;
    --ach-forest-dark: #005f92;
    --ach-lake: #49a9dc;
    --ach-lake-light: #e8f5fc;
    --ach-sand: #ffc107;
    --ach-cream: #f7fbfd;
    --ach-white: #ffffff;
    --ach-ink: #264653;
    --ach-muted: #5b6f7a;
    --ach-line: #d4e7f2;
    --ach-shadow: 0 14px 38px rgba(0, 95, 146, 0.14);
    --ach-radius: 22px;

    color: var(--ach-ink);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.72;
    margin: 0 auto;
    max-width: 1180px;
  }

  .unterkuft1-hund,
  .unterkuft1-hund * {
    box-sizing: border-box;
  }

  .unterkuft1-hund h1,
  .unterkuft1-hund h2,
  .unterkuft1-hund h3,
  .unterkuft1-hund h4 {
    color: var(--ach-forest-dark);
    line-height: 1.2;
    margin-top: 0;
    text-wrap: balance;
  }

  .unterkuft1-hund h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
  }

  .unterkuft1-hund h3 {
    font-size: 1.22rem;
    margin-bottom: 0.55rem;
  }

  .unterkuft1-hund p {
    margin: 0 0 1rem;
  }

  .unterkuft1-hund a {
    color: var(--ach-forest);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
  }

  .unterkuft1-hund a:hover,
  .unterkuft1-hund a:focus-visible {
    color: var(--ach-lake);
  }

  .ach-hero {
    background:
      radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.23) 0 4%, transparent 4.4%),
      radial-gradient(circle at 12% 86%, rgba(255, 193, 7, 0.26) 0 7%, transparent 7.4%),
      linear-gradient(135deg, var(--ach-forest-dark), var(--ach-lake));
    border-radius: 28px;
    color: var(--ach-white);
    margin-bottom: 1.5rem;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 4.5rem);
    position: relative;
    box-shadow: var(--ach-shadow);
  }

  .ach-hero::after {
    background: repeating-linear-gradient(
      115deg,
      transparent 0 19px,
      rgba(255, 255, 255, 0.055) 20px,
      transparent 21px 40px
    );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
  }

  .ach-hero__inner {
    max-width: 900px;
    position: relative;
    z-index: 1;
  }

  .ach-kicker {
    color: #ffe38a;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }

  .ach-hero h1 {
    color: var(--ach-white);
    font-size: clamp(2rem, 5vw, 3.65rem);
    margin-bottom: 1.15rem;
  }

  .ach-hero__lead {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 820px;
  }

  .ach-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.55rem;
  }

  .ach-btn {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    gap: 0.45rem;
    justify-content: center;
    padding: 0.78rem 1.15rem;
    text-decoration: none !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  }

  .ach-btn:hover,
  .ach-btn:focus-visible {
    transform: translateY(-2px);
  }

  .ach-btn--primary {
    background: var(--ach-sand);
    color: #264653 !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  }

  .ach-btn--ghost {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--ach-white) !important;
  }

  .ach-facts {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: -0.2rem 0 1.5rem;
  }

  .ach-fact {
    background: var(--ach-white);
    border: 1px solid var(--ach-line);
    border-radius: 16px;
    box-shadow: 0 7px 20px rgba(0, 95, 146, 0.06);
    padding: 1rem;
    text-align: center;
  }

  .ach-fact strong {
    color: var(--ach-forest-dark);
    display: block;
    font-size: 1.05rem;
  }

  .ach-fact span {
    color: var(--ach-muted);
    font-size: 0.88rem;
  }

  .ach-toc {
    background: var(--ach-cream);
    border: 1px solid #d4e7f2;
    border-radius: 18px;
    margin: 0 0 2.2rem;
    padding: 1rem 1.15rem;
  }

  .ach-toc strong {
    color: var(--ach-forest-dark);
    display: block;
    margin-bottom: 0.55rem;
  }

  .ach-toc__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .ach-toc a {
    background: var(--ach-white);
    border: 1px solid var(--ach-line);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.42rem 0.75rem;
    text-decoration: none;
  }

  .ach-section {
    margin: 0 0 3.2rem;
    scroll-margin-top: 5rem;
  }

  .ach-section__intro {
    color: var(--ach-muted);
    font-size: 1.05rem;
    max-width: 920px;
  }

  .ach-grid {
    display: grid;
    gap: 1rem;
  }

  .ach-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ach-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ach-card {
    background: var(--ach-white);
    border: 1px solid var(--ach-line);
    border-radius: var(--ach-radius);
    box-shadow: 0 8px 28px rgba(0, 95, 146, 0.07);
    height: 100%;
    overflow: hidden;
    padding: 1.3rem;
  }

  .ach-card--tint {
    background: linear-gradient(145deg, #ffffff, #f2f9fd);
  }

  .ach-card__icon {
    align-items: center;
    background: var(--ach-lake-light);
    border: 1px solid rgba(0, 119, 182, 0.14);
    border-radius: 14px;
    color: var(--ach-forest-dark);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 0.9rem;
    width: 46px;
  }

  .ach-card__icon svg {
    fill: none;
    height: 26px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 26px;
  }

  .ach-card__label {
    color: var(--ach-lake);
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
  }

  .ach-card__tip {
    background: var(--ach-cream);
    border-left: 4px solid var(--ach-sand);
    border-radius: 0 12px 12px 0;
    font-size: 0.92rem;
    margin-top: 1rem;
    padding: 0.75rem 0.85rem;
  }

  .ach-callout {
    background: linear-gradient(120deg, var(--ach-forest-dark), var(--ach-forest));
    border-radius: var(--ach-radius);
    color: var(--ach-white);
    display: grid;
    gap: 1rem;
    grid-template-columns: 58px 1fr;
    margin: 1.5rem 0;
    padding: 1.4rem;
  }

  .ach-callout h3 {
    color: var(--ach-white);
  }

  .ach-callout p:last-child {
    margin-bottom: 0;
  }

  .ach-callout__icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    color: var(--ach-white);
    display: flex;
    height: 54px;
    justify-content: center;
    width: 54px;
  }

  .ach-callout__icon svg {
    fill: none;
    height: 30px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 30px;
  }

  .ach-beach {
    border-top: 5px solid var(--ach-lake);
  }

  .ach-beach--main {
    border-top-color: var(--ach-sand);
  }

  .ach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.8rem 0 0;
  }

  .ach-tag {
    background: var(--ach-lake-light);
    border-radius: 999px;
    color: var(--ach-forest-dark);
    font-size: 0.78rem;
    font-weight: 750;
    padding: 0.28rem 0.58rem;
  }

  .ach-note {
    background: #fff9e6;
    border: 1px solid #ffe08a;
    border-radius: 16px;
    margin-top: 1rem;
    padding: 1rem;
  }

  .ach-note strong {
    color: #6b5200;
  }

  .ach-table-wrap {
    border: 1px solid var(--ach-line);
    border-radius: var(--ach-radius);
    box-shadow: 0 8px 28px rgba(0, 95, 146, 0.06);
    overflow-x: auto;
  }

  .ach-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
  }

  .ach-table th,
  .ach-table td {
    border-bottom: 1px solid var(--ach-line);
    padding: 0.9rem;
    text-align: left;
    vertical-align: top;
  }

  .ach-table th {
    background: var(--ach-forest-dark);
    color: var(--ach-white);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }

  .ach-table tr:last-child td {
    border-bottom: 0;
  }

  .ach-table tbody tr:nth-child(even) {
    background: #f7fbfd;
  }

  .ach-level {
    border-radius: 999px;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.24rem 0.55rem;
    white-space: nowrap;
  }

  .ach-level--easy {
    background: #e8f5fc;
    color: #005f92;
  }

  .ach-level--medium {
    background: #fff4cc;
    color: #6b5200;
  }

  .ach-checklist {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
  }

  .ach-checklist li {
    align-items: center;
    background: var(--ach-white);
    border: 1px solid var(--ach-line);
    border-radius: 14px;
    display: flex;
    min-height: 4.6rem;
    padding: 0.8rem 0.9rem 0.8rem 3rem;
    position: relative;
  }

  /*
   * Grafisches Häkchen ohne Schriftzeichen oder Icon-Font.
   * Dadurch entstehen auch in Editoren/CMS keine fehlerhaften Zeichen wie „271?“.
   */
  .ach-checklist li::before {
    background: var(--ach-lake-light);
    border: 2px solid var(--ach-forest);
    border-radius: 50%;
    content: "";
    height: 1.45rem;
    left: 0.85rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.45rem;
  }

  .ach-checklist li::after {
    border-bottom: 3px solid var(--ach-forest-dark);
    border-right: 3px solid var(--ach-forest-dark);
    content: "";
    height: 0.58rem;
    left: 1.31rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -62%) rotate(45deg);
    width: 0.3rem;
  }

  .ach-faq details {
    background: var(--ach-white);
    border: 1px solid var(--ach-line);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    padding: 0;
  }

  .ach-faq summary {
    color: var(--ach-forest-dark);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    padding: 1rem 3rem 1rem 1rem;
    position: relative;
  }

  .ach-faq summary::-webkit-details-marker {
    display: none;
  }

  .ach-faq summary::after {
    content: "+";
    font-size: 1.35rem;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
  }

  .ach-faq details[open] summary::after {
    content: "–";
  }

  .ach-faq__answer {
    border-top: 1px solid var(--ach-line);
    padding: 0.9rem 1rem 0;
  }

  .ach-cta {
    align-items: center;
    background: linear-gradient(135deg, var(--ach-cream), #e8f5fc);
    border: 1px solid #d4e7f2;
    border-radius: 26px;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr auto;
    padding: clamp(1.4rem, 4vw, 2.4rem);
  }

  .ach-cta h2 {
    margin-bottom: 0.55rem;
  }

  .ach-cta p {
    margin-bottom: 0;
  }

  .ach-cta .ach-btn--primary {
    white-space: nowrap;
  }

  .ach-smallprint {
    color: var(--ach-muted);
    font-size: 0.84rem;
    margin-top: 1rem;
  }

  @media (max-width: 900px) {
    .ach-facts,
    .ach-grid--3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ach-cta {
      grid-template-columns: 1fr;
    }
  }


  /*
   * Responsive Wandertabelle:
   * Auf kleinen Bildschirmen wird jede Tabellenzeile als gut lesbare Karte
   * dargestellt. Die Spaltenüberschriften kommen aus den data-label-Attributen.
   */
  @media (max-width: 760px) {
    .ach-table-wrap {
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }

    .ach-table {
      border-collapse: separate;
      display: block;
      min-width: 0;
      width: 100%;
    }

    .ach-table thead {
      border: 0;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      white-space: nowrap;
      width: 1px;
    }

    .ach-table tbody {
      display: grid;
      gap: 1rem;
      width: 100%;
    }

    .ach-table tr {
      background: var(--ach-white) !important;
      border: 1px solid var(--ach-line);
      border-radius: 18px;
      box-shadow: 0 7px 20px rgba(0, 95, 146, 0.07);
      display: block;
      overflow: hidden;
      width: 100%;
    }

    .ach-table td {
      align-items: start;
      border-bottom: 1px solid var(--ach-line);
      display: grid;
      gap: 0.75rem;
      grid-template-columns: minmax(7.5rem, 36%) minmax(0, 1fr);
      overflow-wrap: anywhere;
      padding: 0.85rem 1rem;
      width: 100%;
    }

    .ach-table td::before {
      color: var(--ach-forest-dark);
      content: attr(data-label);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      line-height: 1.4;
    }

    .ach-table td:first-child {
      background: var(--ach-lake-light);
    }

    .ach-table td:last-child {
      border-bottom: 0;
    }
  }

  @media (max-width: 440px) {
    .ach-table td {
      gap: 0.28rem;
      grid-template-columns: 1fr;
    }

    .ach-table td::before {
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
  }

  @media (max-width: 640px) {
    .ach-hero {
      border-radius: 20px;
      padding: 1.5rem;
    }

    .ach-facts,
    .ach-grid--2,
    .ach-grid--3,
    .ach-checklist {
      grid-template-columns: 1fr;
    }

    .ach-callout {
      grid-template-columns: 1fr;
    }

    .ach-actions,
    .ach-btn {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .unterkuft1-hund *,
    .unterkuft1-hund *::before,
    .unterkuft1-hund *::after {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }</style>
