/* bevan-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bevan';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bevan-v26-latin-regular.woff2') format('woff2'),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/bevan-v26-latin-regular.ttf') format('truetype');
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
  --orange: #f49b25;
  --green: #e2f0dc;
  --white: #ffffff;
  --green-dark: #2b6213;
  --text: #3a3a3a;
  --muted: #666666;
  --border: #d7d7d7;
  --max-width: 1600px;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

h1 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

h1,
h2 {
  font-family: 'Bevan';
}

a {
  color: inherit;
  text-decoration: none;
}

.top-header {
  width: 100%;
}

.btn {
  padding: 8px 20px;
  background-color: var(--orange);
  color: #ffffff;
}

.btn:hover {
  background-color: var(--green-dark);
  transition: 0.5s;
}

/* Header mit Hintergrundbild */
.hero-header {
  width: 100%;
  min-height: 80vh;
  background-image: url(../images/Hund-auf-wiese.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/* Dunkles Overlay für Lesbarkeit */
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Inhalt über dem Overlay */
.hero-header>* {
  position: relative;
  z-index: 1;
}

/* obere Leiste */
.topbar {
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--green-dark);
}

/* weiße Logo-Leiste */
.header-whitebar {
  width: 100%;
  background: var(--white);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
}

/* Störer / Hero-Text */
.hero-stoerer {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: calc(80vh - 120px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 24px 80px 24px;
}

.hero-stoerer-content {
  max-width: 620px;
  color: var(--white);
}

.hero-stoerer .hero-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--white);
  max-width: 560px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
}

.hero-button:hover {
  background: var(--white);
  color: #111111;
}

/* Main sections */
.section {
  width: 100%;
  padding: 240px 40px;
}

.section-white {
  background: var(--white);
}

.section-green {
  background: var(--green);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1;
}

.text-block h2 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
}

.text-block h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 28px;
}

.text-block p {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 14px;
}

.text-block ul {
  margin-top: 8px;
  padding-left: 18px;
}

.text-block ul li {
  list-style-position: inside;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 6px;
}

.image-block {
  flex: 1;
}

.image {
  width: 100%;
}

.image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.paralax {
  background-image: url(../images/hundeknochen.webp);
  height: 35vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

/* Footer */
footer {
  background-color: var(--orange);
  padding: 100px 20px;
}

footer .container {
  max-width: var(--max-width);
}

footer .split {
  align-items: flex-start;
  gap: 60px;
}

footer .text-block p,
footer a {
  color: var(--white);
}

footer a:hover {
  color: var(--green-dark);
  transition: 0.3s;
}

footer h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 28px;
}

/* Responsive */
@media (max-width: 1100px) {

  .hero-stoerer .hero-text {
    font-size: 18px;
  }
}

@media (max-width: 900px) {

  .split,
  .split.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .text-block h2 {
    font-size: 35px;
  }

  .image img {
    height: 280px;
  }

  .hero-header {
    background-position: 65% center;
  }

  .header-inner {
    padding: 20px 16px 16px 16px;
  }

  .hero-stoerer {
    min-height: auto;
    padding: 40px 16px 60px 16px;
  }

  .hero-stoerer-content {
    margin-top: 35vh;
  }

  h1 {
    font-size: 30px;
  }

  .hero-stoerer .hero-text {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topbar-left {
    gap: 8px;
  }

  .text-block h2 {
    font-size: 22px;
  }

  .text-block p,
  .text-block ul li {
    font-size: 16px;
  }

  .image img {
    height: 220px;
  }

  .logo {
    width: 280px;
  }

  .hero-button {
    padding: 12px 18px;
    font-size: 14px;
  }

  footer {
    padding: 70px 12px;
  }

  footer h3 {
    font-size: 24px;
  }
}
