* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #3e3e3e;
}

a {
  text-decoration: none;
}

h2 {
  font-size: 2rem;
  color: #C11C22;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* optionaler unterer Strich */
section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #C11C22;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

/* kein optionaler unterer Strich */
.jobs h2::after {
  display: none;
}


h3 {
  font-size: 1.4rem;
  color: #C11C22;
  margin-bottom: 1.5rem;
  text-align: center;
}


p {
  max-width: 1000px;
  margin: 1rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.responsive-img-1 {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.responsive-img-2,
.responsive-img-3 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* oder unset */
  border: none;
  max-width: 100%;
}



/* nav */
.navbar {
  background-color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  width: 255px;
  min-height: 160px;
  border: 1px solid;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #C11C22;
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 1.6rem;
  color: #C11C22;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #3e3e3e;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links .active {
  color: #C11C22;
  border-bottom: 1px solid;
}

.nav-links a:hover {
  color: #C11C22;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #C11C22;
  }

  .nav-links span {
    display: none;
  }

}

/* vacation-notice */
.urlaub-hinweis {
  background-color: #fff6d1;
  color: #3e3e3e;
  border-top: 4px solid #C11C22;
  border-bottom: 4px solid #C11C22;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.urlaub-hinweis p {
  margin: 0.2rem auto;
  max-width: 900px;
}

@media (max-width: 768px) {
  .urlaub-hinweis {
    font-size: 0.9rem;
    padding: 1rem;
  }
}



/* info-banner*/
.info-banner {
  background-color: #C11C22;
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}

.info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  /* Abstand zwischen Zeilen */
}

/* Zeilen-Container */
.info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

/* Text-Spans */
.info-item {
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
}

/* Button-Stil */
.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.4rem 0.9rem;
  border: 2px solid #fff;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.info-btn:hover {
  background-color: #fff;
  color: #C11C22;
}

/* RESPONSIVE */
@media (min-width: 769px) {
  .info-content {
    flex-direction: row;
    gap: 0.8rem;
  }

  .info-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.8rem;
  }
}

@media (min-width: 769px) {
  .info-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* <- hinzugefügt für vertikale Zentrierung */
    gap: 0.8rem;
    text-align: center;
    /* <- optional */
  }

  .info-row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
  }

  .info-btn {
    width: auto;
    max-width: 90vw;
    justify-content: center;
  }
}


/* hero-section */
.hero-section {
  min-height: 800px;
  position: relative;
  background: url('/img/Arzt_mit_Hund_2.webp') center center/ cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}


.hero-section div {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 12px;
  margin: auto;
}

.hero-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: slide-in 1s ease-out forwards;
}

.hero-section p {
  font-size: 1.4rem;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-call {
  display: inline-block;
  background: #E02930;
  color: #fff;
  padding: 0.9rem 1.7rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background: #9A161B;
}

/* emergency-section */
.emergency-contact {
  padding: 3rem 1rem;
  margin: auto;
  background-color: #dddfde;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.emergency-contact ul {
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.emergency-contact li {
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: #fff;
  border-left: 8px solid #C11C22;
  border-radius: 8px;
  font-weight: bold;
}

#patient li::before {
  content: '✔';
  margin-right: 0.5rem;
}

.image-card {
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  /* wichtig: beschneidet alles außerhalb */
  background: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  /* optional: feiner Rahmen */
}

.image-card figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: #666;
  background-color: #f7f7f7;
  text-align: center;
  font-style: italic;
  border-top: 1px solid #e0e0e0;
}

/* intro-text */
.intro-text {
  padding: 4rem 1rem;
  text-align: center;
  color: #3e3e3e;
}

hr {
  border: none;
  border-top: 2px solid #C11C22;
  width: 200px;
  margin: 2rem auto;
}

/* services-section */

.services {
  padding: 3rem 1rem;
  margin: auto;
  background-color: #dddfde;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.services ul,
.steps ol {
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

ul,
.service-list-primary,
.service-list-secondary {
  list-style: none;
  padding-left: 0;
}

.service-list-primary li,
.service-list-secondary li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 1px 1px 1px #C11C22;
}

.services ul li:hover {
  transform: translateY(-10px);
}

/* Primäre Liste – klassischer Punkt */
.service-list-primary li::before {
  content: '-';
  font-size: 1rem;
  line-height: 1;
}

/* Sekundäre Liste – z. B. Pfote */
.service-list-secondary li::before {
  content: '•';
  /* Alternativen: '✔', '➤', '➕' */
  font-size: 1rem;
  line-height: 1;
}


/* about-section */
.about {
  text-align: center;
  padding: 3rem 1rem;
}

.about blockquote {
  width: 70%;
  margin: auto;
  font-style: italic;
  margin-bottom: 1rem;
  border-left: 8px solid #C11C22;
  padding: 1.2em 30px 1.2em;
  position: relative;
  background: #fff0f5;
}

blockquote span {
  display: block;
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

/* social-proof-section */
.social-proof {
  padding: 3rem 1rem;
  background-color: #f7f1f3;
}

.carousel-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.carousel-item p {
  margin: 0.25rem;
}


.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  height: 350px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-item img {
    height: 500px;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem 0.6rem;
  opacity: 0.7;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 12px;
  display: inline-block;
  cursor: pointer;
}

.carousel-dots .active {
  background-color: #333;
}


/* faq */
.faq-container {
  max-width: 1000px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #ccc;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 1rem;
  background: #C11C22;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 1rem;
}

.faq-item input:checked~.faq-content {
  max-height: 300px;
  padding: 1rem;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #C11C22;
  text-decoration: none;
  font-weight: bold;
  padding: 0.4rem 0.9rem;
  border: 2px solid #C11C22;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-top: 0.8rem;
}

.faq-btn:hover {
  background-color: #C11C22;
  color: #fff;
}

/* online-consultaion-section */
.online-consultation {
  padding: 3rem 1rem;
  margin: auto;
  background-color: #f7f1f3;
  border-radius: 12px;
}

.online-consultation .text {
  text-align: center;
}

.online-consultation h2 {
  font-size: 2rem;
  color: #C11C22;
  margin-bottom: 1rem;
}

.online-consultation p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.online-consultation ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
  max-width: 800px;
  margin: 1rem auto;
}

@media (max-width: 768px) {
  .online-consultation ul {
    padding-left: 1rem;
  }
}

/* footer */
.footer {
  background-color: #dddfde;
  color: #3e3e3e;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-content div {
  flex: 1 1 100px;
  margin: 10px;
}

.footer-content h3 {
  text-align: center;
}

.footer-content p {
  font-size: 1rem;
}

.footer-content a {
  color: #3e3e3e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #C11C22;
}

.rechtliches p {
  margin: 2px !important;
}


.footer-contact p {
  margin: 0.4rem 0;
  font-size: 1rem;
}

.footer-contact a {
  color: #3e3e3e;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.footer-contact a:hover {
  color: #C11C22;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-content div {
    text-align: center;
    margin-bottom: 10px;
  }
}


/* cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  display: none;
}

#cookie-banner a {
  color: #000;
  font-weight: bold;
}

#cookie-banner a:hover {
  color: #C11C22;
}

#cookie-banner button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

#accept-cookies {
  background: #22C11C;
  color: #000;
}

#reject-cookies {
  background: #C11C22;
  color: white;
}

/* impressum */
.impressum {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0.5rem;
  align-items: center;
}

.impressum .text h1 {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #C11C22;
}

.impressum .text h2 {
  text-align: left;
  color: #3c3c3c;
  font-size: 1.5rem;
}

.impressum p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .impressum {
    padding: 1.5rem;
    margin: 1rem;
  }
}


/* datenschutz */
.datenschutz {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0.5rem;
  align-items: center;
}

.datenschutz .text h1 {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #C11C22;
}

.datenschutz .text h2,
.datenschutz .text h3 {
  text-align: left;
  color: #3c3c3c;
  font-size: 1.5rem;
}

.datenschutz p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
}

.datenschutz ul {
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .datenschutz {
    padding: 1.5rem;
    margin: 1rem;
  }
}

/* jobs */
.jobs {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0.5rem;
  align-items: center;
}

.jobs .text h1 {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #C11C22;
}

.jobs .text h2 {
  text-align: left;
  color: #3c3c3c;
  font-size: 1.5rem;
}

.jobs p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
}

.jobs ul {
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}

.jobs a {
  color: #3e3e3e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jobs a:hover {
  color: #C11C22;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .jobs {
    padding: 1.5rem;
    margin: 1rem;
  }
}

/* fees */
.fees {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0.5rem;
  align-items: center;
}

.fees .text h1 {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #C11C22;
}

.fees p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
  font-weight: bold;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .fees {
    padding: 1rem 0.5rem;
  }

  .fees .text {
    padding: 0 0.5rem;
  }
}

/* got-section */
.got-section {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f7f1f3;
  padding: 60px 20px;

}

.got-section h2 {
  font-size: 1.8rem;
  color: #C11C22;
  margin-bottom: 1.5rem;
  text-align: center;
}

.got-section p {
  margin-bottom: 1.2rem;
}

.got-section ul {
  margin: 0 0 1.5rem 1.2rem;
  padding-left: 1.2rem;
  list-style-type: decimal;
}

.got-section ul li {
  margin-bottom: 0.5rem;
}

.got-section .notice {
  font-style: italic;
  background-color: #fff;
  border-left: 8px solid #C11C22;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 8px;
  color: #444;
}

/* call-out-fees-section */

.call-out-fees-section {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f7f1f3;
  padding: 60px 20px;
}

.call-out-fees-section h2 {
  font-size: 1.8rem;
  color: #C11C22;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Preis-Liste */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-list li span:first-child {
  font-weight: 600;
  max-width: 75%;
  word-break: break-word;
}

.price-list li span:last-child {
  white-space: nowrap;
  font-weight: bold;
}

@media (max-width: 600px) {
  .price-list li {
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1.3;
  }
}




/* debevet */
.debevet {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0.5rem;
  align-items: center;
}

.debevet .text h1 {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #C11C22;
}

.debevet .text h2 {
  text-align: left;
  color: #3c3c3c;
  font-size: 1.5rem;
}

.debevet p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
}

.debevet ul {
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .debevet {
    padding: 1rem 0.5rem;
    /* weniger horizontaler Abstand */
  }

  .debevet .text {
    padding: 0 0.5rem;
    /* noch schmalerer Rand */
  }
}


/* video */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Verhältnis 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}