/* ===== Hundeservice Just 4 Fun — Website 2026 ===== */

:root {
  --pink: #EE338F;
  --red: #C1272D;
  --red-dark: #8E1B20;
  --red-light: #E2574B;
  --black: #211D1B;
  --black-soft: #342E2A;
  --amber: #DB8C2B;
  --amber-light: #F0B65E;
  --bg: #FAF5EA;
  --bg-alt: #F0E6D2;
  --ink: #241F1C;
  --ink-soft: #6B5E52;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(33, 25, 20, 0.28);
  --shadow-sm: 0 8px 24px -12px rgba(33, 25, 20, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-word {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: "🐾"; font-size: 0.9rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 234, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 29, 27, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 62px; width: auto; flex-shrink: 0; }
.footer-logo .logo-img { height: 42px; background: var(--white); padding: 8px 14px; border-radius: 10px; }
a.btn[href^="https://wa.me"] { padding: 13px 28px; border: 2px solid var(--pink); }
.logo-word {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  color: var(--black);
}
.logo-word .paw { color: var(--red); font-size: 1.1rem; }
.logo-word .num {
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  padding: 0 8px;
  font-size: 1.1rem;
}
.footer-logo .logo-word { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(193, 39, 45, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(193, 39, 45, 0.65); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--black);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(circle at 15% 10%, rgba(193, 39, 45, 0.12), transparent 45%),
              radial-gradient(circle at 88% 0%, rgba(219, 140, 43, 0.16), transparent 40%),
              var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  color: var(--black);
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--red); }
.hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.trust-item .paw { color: var(--red); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--black) 0%, var(--black-soft) 60%, #14100E 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .paw-mark {
  font-size: 7rem;
  opacity: 0.9;
}
.hero-visual .orb {
  position: absolute;
  top: 30px; right: 30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-light), var(--amber) 70%);
  box-shadow: 0 0 60px 10px rgba(219, 140, 43, 0.5);
}
.hero-visual .card-float {
  position: absolute;
  left: 22px; bottom: 22px;
  right: 22px;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.hero-visual .card-float .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(193,39,45,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.hero-visual .card-float strong {
  display: block;
  font-size: 1.03rem;
  color: var(--black);
}

/* ===== Sections ===== */
section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .ink-soft { color: rgba(255,255,255,0.72); }
.section-dark h2 { color: var(--white); }

.section-head {
  max-width: 620px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.3vw, 2.5rem); color: var(--black); }
.section-head p { color: var(--ink-soft); font-size: 1.03rem; margin-top: 14px; }

/* ===== Grid cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(33,29,27,0.05);
  border-top: 4px solid var(--red);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:nth-child(3n+2) { border-top-color: var(--amber); }
.card:nth-child(3n+3) { border-top-color: var(--black); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--bg-alt);
}
.card h3 { font-size: 1.12rem; color: var(--black); margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ===== Photo frame (flyer-style orange border) ===== */
.photo-frame {
  border-radius: var(--radius);
  border: 4px solid var(--amber);
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, #EADFC7, #DCCBA6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  box-shadow: var(--shadow-sm);
}

/* ===== Banner strip (flyer black bar look) ===== */
.banner-strip {
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* ===== Story / Philosophie ===== */
.story-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.story-block h2 { color: var(--black); font-size: clamp(1.85rem, 3.1vw, 2.4rem); margin-bottom: 16px; }
.story-block p { color: var(--ink-soft); margin-bottom: 14px; font-size: 1rem; }
.quote-block {
  border-left: 4px solid var(--red);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--black);
  font-size: 1.08rem;
}

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--black), var(--black-soft) 60%, var(--red-dark));
  border-radius: 28px;
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-size: clamp(1.65rem, 2.9vw, 2.2rem); max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: 10px; }

/* ===== Leistungen detail rows ===== */
.leistung-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(33,29,27,0.1);
}
.leistung-row:last-child { border-bottom: none; }
.leistung-row:nth-child(even) { grid-template-columns: 1.2fr 0.8fr; }
.leistung-row:nth-child(even) .photo-frame { order: 2; }
.leistung-row h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 10px; }
.leistung-row p { color: var(--ink-soft); margin-bottom: 12px; }
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.tag-chip {
  background: var(--bg-alt);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(33,29,27,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.info-row strong { display: block; color: var(--black); margin-bottom: 3px; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: 0.94rem; }

form .field { margin-bottom: 18px; }
form label {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--black);
  margin-bottom: 7px;
}
form input, form textarea, form select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(33,29,27,0.15);
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--red);
}
form textarea { resize: vertical; min-height: 110px; }

.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}
.map-block iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ===== Footer ===== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 66px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: 0.9rem; transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--amber-light); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--amber-light); }

/* ===== Page hero (subpages) ===== */
.page-hero {
  padding: 60px 0 56px;
  background: radial-gradient(circle at 80% 0%, rgba(219, 140, 43, 0.16), transparent 40%),
              radial-gradient(circle at 10% 10%, rgba(193, 39, 45, 0.12), transparent 40%),
              var(--bg);
}
.page-hero h1 { font-size: clamp(2rem, 3.8vw, 2.8rem); color: var(--black); max-width: 700px; }
.page-hero p { color: var(--ink-soft); font-size: 1.06rem; max-width: 560px; margin-top: 16px; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .cur { color: var(--red); font-weight: 600; }

/* ===== Slideshow ===== */
.slideshow {
  position: relative;
  aspect-ratio: 16/7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }
.slide-frame {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  aspect-ratio: auto;
  font-size: 5rem;
}
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slideshow-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(33,29,27,0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slideshow-dots .dot.active { background: var(--red); transform: scale(1.25); }

/* ===== Termine ===== */
.termine-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.termine-card h3 { color: var(--black); font-size: 1.15rem; margin-bottom: 18px; }
.termin-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(33,29,27,0.08);
}
.termin-item:last-child { border-bottom: none; }
.termin-date { font-weight: 700; color: var(--red); font-size: 0.85rem; margin-bottom: 4px; }
.termin-title { font-weight: 600; color: var(--black); font-size: 0.98rem; margin-bottom: 2px; }
.termin-time, .termin-ort { color: var(--ink-soft); font-size: 0.88rem; }
.termin-adhoc .termin-title { color: var(--ink-soft); font-weight: 600; }
.termin-time.placeholder { color: var(--amber); font-weight: 600; }
.termine-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* ===== Legal page ===== */
.legal-block { max-width: 780px; }
.legal-block h2 { color: var(--black); font-size: 1.28rem; margin: 32px 0 12px; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block p { color: var(--ink-soft); margin-bottom: 12px; }
.legal-block ul { margin: 12px 0 12px 4px; }
.legal-block ul li { color: var(--ink-soft); margin-bottom: 8px; padding-left: 18px; position: relative; }
.legal-block ul li::before { content: "—"; position: absolute; left: 0; color: var(--red); }
.legal-block .placeholder { color: var(--amber); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid, .story-block, .contact-grid, .leistung-row, .leistung-row:nth-child(even) { grid-template-columns: 1fr; }
  .leistung-row:nth-child(even) .photo-frame { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px) {
  .nav-links { position: fixed; top: 73px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 24px; gap: 18px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .burger { display: flex; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 34px; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 46px 0 64px; }
}
