@font-face {
  font-family: "Thistails";
  src: url("https://hundeschule-ettringen.de/wp-content/uploads/2026/08/thistails-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

highlight {
  font-family: "Thistails", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}



/* ==========================================
   CLEAN PAW ICON
========================================== */

.animated-arrow {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  margin-left: 9px;

  border: 1.5px solid currentColor;
  border-radius: 50%;

  color: currentColor;

  vertical-align: middle;

  transition:
    transform 0.6s cubic-bezier(.22, 1, .36, 1),
    background-color 0.45s ease,
    color 0.45s ease;
}


/* Das ↗ aus dem JS unsichtbar machen */

.animated-arrow-inner {
  display: none;
}


/* Pfote */

.animated-arrow::before {
  content: "";

  width: 14px;
  height: 14px;

  background-color: currentColor;

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='15.5' rx='5.2' ry='4.2'/%3E%3Cellipse cx='5.8' cy='10.2' rx='2.1' ry='2.8' transform='rotate(-25 5.8 10.2)'/%3E%3Cellipse cx='9.7' cy='6.5' rx='2' ry='2.8' transform='rotate(-8 9.7 6.5)'/%3E%3Cellipse cx='14.3' cy='6.5' rx='2' ry='2.8' transform='rotate(8 14.3 6.5)'/%3E%3Cellipse cx='18.2' cy='10.2' rx='2.1' ry='2.8' transform='rotate(25 18.2 10.2)'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='15.5' rx='5.2' ry='4.2'/%3E%3Cellipse cx='5.8' cy='10.2' rx='2.1' ry='2.8' transform='rotate(-25 5.8 10.2)'/%3E%3Cellipse cx='9.7' cy='6.5' rx='2' ry='2.8' transform='rotate(-8 9.7 6.5)'/%3E%3Cellipse cx='14.3' cy='6.5' rx='2' ry='2.8' transform='rotate(8 14.3 6.5)'/%3E%3Cellipse cx='18.2' cy='10.2' rx='2.1' ry='2.8' transform='rotate(25 18.2 10.2)'/%3E%3C/svg%3E")
    center / contain no-repeat;

  transition:
    transform 0.65s cubic-bezier(.22, 1, .36, 1);
}


/* ==========================================
   HOVER
========================================== */

.w-btn:hover .animated-arrow {
  transform: scale(1.05);
}

.w-btn:hover .animated-arrow::before {
  transform:
    rotate(-8deg)
    scale(1.08);
}


/* Klick */

.w-btn:active .animated-arrow {
  transform: scale(.96);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  .animated-arrow,
  .animated-arrow::before {
    transition: none;
  }
}






/* ==========================================
   SERVICES – HUNDESCHULE ETTRINGEN
========================================== */

.hs-services-grid {
  --dark: #292929;
  --text-soft: rgba(41, 41, 41, 0.67);
  --border: rgba(41, 41, 41, 0.14);
  --line: rgba(41, 41, 41, 0.18);
  --paper: rgba(255, 255, 255, 0.44);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px 22px;

  width: 100%;
}


/* ==========================================
   TILE
========================================== */

.hs-service-tile {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 620px;

  padding: 22px;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.58),
      rgba(255,255,255,.20)
    );

  overflow: hidden;

  transform: translate3d(0, 0, 0);

  transition:
    transform .7s cubic-bezier(.16,1,.3,1),
    border-color .55s ease,
    box-shadow .7s cubic-bezier(.16,1,.3,1);
}


/* leichte Editorial-Versetzung */

.hs-tile-offset {
  transform: translateY(34px);
}

.hs-tile-offset:hover {
  transform: translateY(24px);
}


/* ==========================================
   SUBTILER MOUSE SPOTLIGHT
========================================== */

.hs-tile-spotlight {
  position: absolute;

  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);

  width: 340px;
  height: 340px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.50) 0%,
      rgba(255,255,255,.16) 32%,
      transparent 68%
    );

  opacity: 0;

  pointer-events: none;

  transition: opacity .6s ease;

  z-index: 1;
}

.hs-service-tile:hover .hs-tile-spotlight {
  opacity: 1;
}


/* ==========================================
   TOP / NUMBER + LINE
========================================== */

.hs-tile-top {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;

  margin-bottom: 20px;
}


.hs-tile-number {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--dark);
  border-radius: 50%;

  color: var(--dark);

  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color .45s ease,
    color .45s ease,
    transform .6s cubic-bezier(.16,1,.3,1);
}


.hs-tile-line {
  position: relative;

  flex: 1;

  height: 2px;

  margin-left: 14px;

  background: var(--line);

  overflow: hidden;
}


.hs-tile-line::after {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--dark);

  transform: translateX(-101%);

  transition:
    transform .8s cubic-bezier(.16,1,.3,1);
}


/* ==========================================
   IMAGE
========================================== */

.hs-tile-image {
  position: relative;
  z-index: 2;

  width: 100%;
  aspect-ratio: 4 / 3;

  margin-bottom: 27px;

  border-radius: 22px;

  overflow: hidden;

  background: #ddd;
}


.hs-tile-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.001);

  transition:
    transform 1.15s cubic-bezier(.16,1,.3,1),
    filter .8s ease;
}


/* verschiedene Crops */

.image-focus-top img {
  object-position: center 28%;
}

.image-focus-right img {
  object-position: 70% center;
}

.image-focus-center img {
  object-position: center center;
}


/* sehr dezentes Overlay */

.hs-tile-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(20,20,20,.07) 100%
    );

  pointer-events: none;
}


/* ==========================================
   BODY
========================================== */

.hs-tile-body {
  position: relative;
  z-index: 3;
}


.hs-tile-body h3 {
  margin: 0 0 18px;

  color: var(--dark);

  font-size: clamp(24px, 1.9vw, 32px);
  font-weight: 650;

  line-height: 1.05;
  letter-spacing: -.04em;
}


.hs-tile-body p {
  margin: 0 0 13px;

  color: var(--text-soft);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.6;
}


/* ==========================================
   LINK
========================================== */

.hs-tile-link {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;
  padding-top: 22px;

  border-top: 1px solid var(--line);

  color: var(--dark);

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}


/* Circle Arrow */

.hs-tile-arrow {
  width: 31px;
  height: 31px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid currentColor;
  border-radius: 50%;

  font-size: 13px;
  line-height: 1;

  overflow: hidden;

  transition:
    transform .6s cubic-bezier(.16,1,.3,1),
    background-color .45s ease,
    color .45s ease;
}


/* ==========================================
   HOVER
========================================== */

.hs-service-tile:hover {
  transform: translateY(-8px);

  border-color: rgba(41,41,41,.29);

  box-shadow:
    0 22px 55px rgba(18,18,18,.07);
}


/* Nummer */

.hs-service-tile:hover .hs-tile-number {
  background: var(--dark);
  color: #fff;

  transform:
    rotate(-5deg)
    scale(1.04);
}


/* Linie läuft ein */

.hs-service-tile:hover .hs-tile-line::after {
  transform: translateX(0);
}


/* Bild sehr ruhig zoomen */

.hs-service-tile:hover .hs-tile-image img {
  transform: scale(1.045);
}


/* Arrow */

.hs-service-tile:hover .hs-tile-arrow {
  background: var(--dark);
  color: #fff;

  transform:
    translate(2px, -2px)
    rotate(3deg);
}


/* ==========================================
   BREITE SOCIAL-WALK-CARD
========================================== */

.hs-service-wide {
  grid-column: span 2;
}


/* breites Bild */

.hs-service-wide .hs-tile-image {
  aspect-ratio: 16 / 7;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {

  .hs-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-tile-offset {
    transform: none;
  }

  .hs-tile-offset:hover {
    transform: translateY(-8px);
  }

  .hs-service-wide {
    grid-column: span 2;
  }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 680px) {

  .hs-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hs-service-tile,
  .hs-tile-offset {
    min-height: 0;

    padding: 18px;

    border-radius: 23px;

    transform: none;
  }

  .hs-service-tile:hover,
  .hs-tile-offset:hover {
    transform: none;
  }

  .hs-service-wide {
    grid-column: auto;
  }

  .hs-tile-image,
  .hs-service-wide .hs-tile-image {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .hs-tile-body h3 {
    font-size: 24px;
  }

  .hs-tile-body p {
    font-size: 15px;
  }
}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

  .hs-service-tile,
  .hs-tile-number,
  .hs-tile-line::after,
  .hs-tile-image img,
  .hs-tile-arrow {
    transition: none;
  }
}






/* =========================================
   SECTION 04 – EXPANDING GREEN CARDS
========================================= */

.hs-why {
  --card-green: #718264;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.78);
  --white-line: rgba(255, 255, 255, 0.30);

  display: flex;
  align-items: stretch;

  width: 100%;
  gap: 10px;

  /* mehr Luft oben & unten */
  padding: 55px 0 65px;
}


/* =========================================
   CARD
========================================= */

.hs-why-card {
  position: relative;

  flex: 1 1 0;
  min-width: 0;
  min-height: 430px;

  display: flex;
  flex-direction: column;

  padding: 24px;

  background: var(--card-green);

  border-radius: 24px;

  overflow: hidden;
  cursor: default;

  transition:
    flex .75s cubic-bezier(.16, 1, .3, 1),
    transform .65s cubic-bezier(.16, 1, .3, 1),
    border-radius .65s cubic-bezier(.16, 1, .3, 1),
    box-shadow .65s cubic-bezier(.16, 1, .3, 1),
    opacity .45s ease;
}


/* =========================================
   HOVER – CARD WIRD BREITER
========================================= */

.hs-why-card:hover {
  flex-grow: 2.2;

  transform: translateY(-7px);

  border-radius: 30px;

  box-shadow:
    0 22px 50px rgba(42, 55, 36, 0.18);
}


/* =========================================
   NUMMER + LINIE
========================================= */

.hs-why-top {
  display: flex;
  align-items: center;

  width: 100%;

  margin-bottom: auto;
}


.hs-why-number {
  width: 39px;
  height: 39px;

  flex: 0 0 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--white);
  border-radius: 50%;

  color: var(--white);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color .45s ease,
    color .45s ease,
    transform .65s cubic-bezier(.16, 1, .3, 1);
}


.hs-why-line {
  position: relative;

  flex: 1;

  height: 2px;

  margin-left: 13px;

  background: var(--white-line);

  overflow: hidden;
}


.hs-why-line::after {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--white);

  transform: translateX(-101%);

  transition:
    transform .8s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================
   CONTENT
========================================= */

.hs-why-content {
  margin-top: 80px;
}


.hs-why-content h3 {
  max-width: 290px;

  margin: 0 0 20px;

  color: var(--white);

  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 650;

  line-height: 1.08;
  letter-spacing: -.035em;

  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1);
}


.hs-why-content p {
  max-width: 350px;

  margin: 0 0 12px;

  color: var(--white-soft);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.55;

  opacity: .78;

  transition:
    opacity .5s ease,
    transform .6s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================
   HOVER DETAILS
========================================= */

.hs-why-card:hover .hs-why-number {
  background: var(--white);
  color: var(--card-green);

  transform:
    rotate(-5deg)
    scale(1.04);
}


.hs-why-card:hover .hs-why-line::after {
  transform: translateX(0);
}


.hs-why-card:hover .hs-why-content h3 {
  transform: translateY(-3px);
}


.hs-why-card:hover .hs-why-content p {
  opacity: 1;

  transform: translateY(-2px);
}


/* andere Cards subtil zurücknehmen */

.hs-why:has(.hs-why-card:hover)
.hs-why-card:not(:hover) {
  opacity: .72;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .hs-why {
    overflow-x: auto;

    padding: 45px 0 55px;

    scrollbar-width: none;
  }

  .hs-why::-webkit-scrollbar {
    display: none;
  }

  .hs-why-card {
    flex: 0 0 260px;
  }

  .hs-why-card:hover {
    flex: 0 0 350px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .hs-why {
    gap: 9px;

    padding: 35px 0 45px;
  }

  .hs-why-card {
    flex: 0 0 82vw;

    min-height: 390px;

    padding: 22px;

    border-radius: 22px;
  }

  .hs-why-card:hover {
    flex: 0 0 82vw;

    transform: none;
  }

  .hs-why-content {
    margin-top: 65px;
  }

  .hs-why-content h3 {
    font-size: 23px;
  }

  .hs-why-content p {
    color: var(--white-soft);

    opacity: 1;

    font-size: 14px;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .hs-why-card,
  .hs-why-number,
  .hs-why-line::after,
  .hs-why-content h3,
  .hs-why-content p {
    transition: none;
  }

}




/* =========================================
   TRAININGSABLAUF
   Stil wie Section 01
========================================= */

.hs-process {
  --dark: #292929;
  --line: rgba(41, 41, 41, 0.28);

  width: 100%;
}


/* EINZELNER SCHRITT */

.hs-process-item {
  position: relative;

  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;

  align-items: start;

  padding: 25px 0 27px;

  border-bottom: 2px solid var(--line);

  transition:
    padding-left .5s cubic-bezier(.16, 1, .3, 1),
    border-color .4s ease;
}


/* erster Strich oben */

.hs-process-item:first-child {
  border-top: 2px solid var(--line);
}


/* =========================================
   NUMMER
========================================= */

.hs-process-number {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--dark);
  border-radius: 50%;

  color: var(--dark);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color .45s ease,
    color .45s ease,
    transform .55s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================
   TEXT
========================================= */

.hs-process-content h3 {
  margin: 0 0 7px;

  color: var(--dark);

  font-size: 20px;
  font-weight: 600;

  line-height: 1.15;
  letter-spacing: -.02em;

  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1);
}


.hs-process-content p {
  max-width: 720px;

  margin: 0;

  color: rgba(41, 41, 41, .67);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.55;

  transition:
    color .4s ease,
    transform .5s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================
   HOVER
========================================= */

.hs-process-item:hover {
  padding-left: 8px;

  border-color: var(--dark);
}


/* Kreis füllt sich */

.hs-process-item:hover .hs-process-number {
  background: var(--dark);
  color: #fff;

  transform: scale(1.07);
}


/* Text bewegt sich minimal */

.hs-process-item:hover .hs-process-content h3 {
  transform: translateX(4px);
}

.hs-process-item:hover .hs-process-content p {
  transform: translateX(4px);

  color: var(--dark);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .hs-process-item {
    grid-template-columns: 45px 1fr;
    gap: 14px;

    padding: 21px 0 23px;
  }

  .hs-process-number {
    width: 34px;
    height: 34px;

    font-size: 10px;
  }

  .hs-process-content h3 {
    font-size: 18px;
  }

  .hs-process-content p {
    font-size: 14px;
  }

  .hs-process-item:hover {
    padding-left: 0;
  }

}




/* =========================================
   SECTION 06 – VORTEILE
   2 SPALTEN / WEISS / PFOTEN
========================================= */

.hs-benefits {
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.24);
  --dark: #292929;

  width: 100%;
  max-width: 1050px;

  margin: 0 auto;
  padding: 35px 0 50px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 55px;
}


/* =========================================
   EINZELNER VORTEIL
========================================= */

.hs-benefit {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 14px;

  width: 100%;

  padding: 20px 5px;

  border-bottom: 2px solid var(--line);

  cursor: default;

  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    border-color .45s ease,
    opacity .45s ease;
}


/* obere Linie bei den ersten beiden */

.hs-benefit:nth-child(-n+2) {
  border-top: 2px solid var(--line);
}


/* =========================================
   PFOTEN-KREIS
========================================= */

.hs-benefit-check {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--white);
  border-radius: 50%;

  color: var(--white);

  font-size: 14px;
  line-height: 1;

  /*
   * Macht das Pfoten-Emoji möglichst
   * monochrom weiß.
   */
  filter:
    grayscale(1)
    brightness(0)
    invert(1);

  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1),
    background-color .4s ease,
    filter .4s ease;
}


/* =========================================
   TEXT
========================================= */

.hs-benefit-text {
  color: var(--white);

  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;

  letter-spacing: -.015em;

  text-align: left;

  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================
   HOVER – KOMPLETTER PUNKT
========================================= */

.hs-benefit:hover {
  transform: translateX(6px);

  border-color: var(--white);
}


/* Pfotenkreis füllt sich */

.hs-benefit:hover .hs-benefit-check {
  background: var(--white);

  filter:
    grayscale(1)
    brightness(.25);

  transform:
    rotate(-9deg)
    scale(1.1);
}


/* Text bewegt sich minimal */

.hs-benefit:hover .hs-benefit-text {
  transform: translateX(3px);
}


/* =========================================
   ANDERE VORTEILE BEIM HOVER
========================================= */

.hs-benefits:has(.hs-benefit:hover)
.hs-benefit:not(:hover) {
  opacity: .48;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .hs-benefits {
    grid-template-columns: 1fr;

    padding: 25px 0 35px;

    column-gap: 0;
  }


  /* obere Linien zurücksetzen */

  .hs-benefit:nth-child(-n+2) {
    border-top: none;
  }


  /* nur erster Punkt bekommt obere Linie */

  .hs-benefit:first-child {
    border-top: 2px solid var(--line);
  }


  .hs-benefit {
    padding: 17px 4px;

    gap: 12px;
  }


  .hs-benefit-text {
    font-size: 16px;
  }


  .hs-benefit-check {
    width: 29px;
    height: 29px;

    flex-basis: 29px;

    font-size: 13px;
  }


  /* auf Touch kein seitliches Springen */

  .hs-benefit:hover {
    transform: none;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .hs-benefit,
  .hs-benefit-check,
  .hs-benefit-text {
    transition: none;
  }

}