html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  background-color: #fef6e4;
  color: #333;
}

/* ========== Navigation fixiert oben ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d4e8d4;
  padding: 1em 2em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-left .logo {
  height: 60px;
  border-radius: 8px;
}

.nav-center .nav {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5em 1em;
  transition: background 0.3s ease;
}

.nav a:hover {
  background-color: #eee;
  border-radius: 4px;
}

.nav-right .phone {
  font-weight: bold;
  color: #007a5e;
  white-space: nowrap;
}

/* ========== Dropdown-Menü für Navigation ========== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0.5em 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 4px;
  min-width: 180px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0.5em 0;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.3em 0.5em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #eee;
}

/* ========== Header mit Collage ========== */
.hero {
  height: 100vh;
  background: url('img/collage.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px; /* Platz für Navbar */
  text-align: center;
  position: relative;
}

.hero-text {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #388e3c;
}

/* ========== Footer für Startseite ========== */
.site-footer {
  padding: 2em 1em;
  background-color: #d4e8d4;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.9em;
  color: #4a4a4a;
  margin: 0;
}

/* ========== Inhaltsabschnitte: Über mich, Leistungen, Blog, Kontakt ========== */

section {
  padding: 4em 1em;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container,
.service-grid,
.blog-grid,
.kontakt-form {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  align-items: flex-start;
}

/* Über mich */
.about-image img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-text {
  max-width: 600px;
}

.about-text h2,
.about-text h3 {
  margin-top: 0;
  color: #007a5e;
}

.section-description {
  font-weight: bold;
  color: #4caf50;
  margin-top: 1em;
}


/* ========== Leistungen ========== */
.services {
  background-color: #f5fdf5;
  text-align: center;
  padding: 80px 20px;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  
}

.service-box {
  background-color: #ffffff;
  border: 2px solid #d4e8d4;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1em;
  line-height: 1.5;
}
.service-img {
  width: 100%;
  height: 200px; /* oder z. B. 180px, je nach Layout */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  margin-bottom: 1em;
}
.readmore-button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background-color: #5c9c8d;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.readmore-button:hover {
  background-color: #4a8376;
}


/* ========== Blog ========== */
.blog-intro {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #4a4a4a;
  background-color: #fff8ec;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  line-height: 1.6;
}

.blog-preview {
  background-color: #f5f5f0;
  padding: 40px 20px;
  text-align: center;
}

.blog-preview h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #4a4a4a;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.emoji {
  font-size: 2em;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.blog-card p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #8fcf8f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.read-more:hover {
  background-color: #6fbf6f;
}
.blog-intro-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff8ec;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto 30px auto;
  flex-wrap: wrap;
}
.blog-chat {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 12px;
  max-width: 700px;
  margin: 2em auto;
  font-family: 'Open Sans', sans-serif;
}

.blog-chat textarea {
  width: 100%;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 0.5em;
}

.blog-chat button {
  margin-top: 1em;
  padding: 0.8em 1.5em;
  background-color: #5c9c8d;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.antwortbereich {
  margin-top: 2em;
}

.frage, .antwort {
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 8px;
}

.frage {
  background-color: #e6f4ea;
}

.antwort {
  background-color: #dfe9f0;
}
.qa-block {
  background: #f0f7f4;
  padding: 1em;
  border-radius: 8px;
  margin-bottom: 1em;
}

.qa-block p {
  margin: 0.5em 0;
}
.blog-button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: #5c9c8d;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.blog-button:hover {
  background-color: #4a8376;
}
.frage-box {
  background: #f9f9f9;
  border-left: 4px solid #4CAF50;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
}
.frage-box p strong {
  color: #2c3e50;
}

.frage-box p:nth-child(2) {
  margin-top: 8px;
  background: #e8f5e9;
  padding: 10px;
  border-left: 3px solid #4CAF50;
  border-radius: 4px;
}
.tag-badge {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  margin-top: 5px;
}

.pfote-img {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.blog-intro-text {
  flex: 1;
  font-size: 1.1em;
  color: #4a4a4a;
  line-height: 1.6;
}
.frage-box {
  background: #f0f8ff;
  border-left: 4px solid #4CAF50;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 6px;
  font-family: Open Sans, sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tag-badge {
  display: inline-block;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  margin-top: 5px;
  margin-right: 5px;
}

.tag-Allergie    { background-color: #e74c3c; } /* Rot */
.tag-Verhalten   { background-color: #3498db; } /* Blau */
.tag-Hausmittel  { background-color: #9b59b6; } /* Lila */
.tag-Ernährung   { background-color: #f39c12; } /* Orange */
.tag-Pflege      { background-color: #2ecc71; } /* Grün */
.tag-default     { background-color: #7f8c8d; } /* Grau */


/* ========== Kontakt ========== */
.kontakt-section {
  background-color: #f0f8f5;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kontakt-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.kontakt-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kontakt-form label {
  font-weight: bold;
  color: #333;
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  background-color: #fff;
}

.kontakt-form button {
  background-color: #8fcf8f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}

.wackel-button {
  background-color: #8fcf8f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.wackel-button:hover {
  background-color: #6fbf6f;
  animation: wackeln 0.6s ease-in-out;
}

@keyframes wackeln {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(3deg); }
  50%  { transform: rotate(-3deg); }
  75%  { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.kontakt-form button:hover {
  background-color: #6fbf6f;
}
.feedback-message {
  margin-top: 1em;
  padding: 1em;
  background-color: #e6f4ea;
  border-left: 6px solid #5c9c8d;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* ========== Impressum ========== */
.impressum-section {
  background-color: #fefefe;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
}
.impressum-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #4a4a4a;
}
.impressum-section p {
  margin-bottom: 15px;
}

/* ========== Galerie ========== */
.galerie-section {
  background-color: #fffaf3;
  padding:  80px 20px;
  text-align: center;
}

.galerie-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.galerie-intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}
.carousel-gallery {
  text-align: center;
  margin: 3em 0;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-x;
}
.carousel-slide {
  min-width: 100%;
  text-align: center;
  padding: 1em;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.caption {
  margin-top: 0.5em;
  font-size: 1em;
  color: #333;
  background: #fdfdfd;
  padding: 0.8em 1em;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}

.filter-buttons button {
  padding: 0.5em 1em;
  border: none;
  background-color: #eee;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.filter-buttons button.active {
  background-color: #007a5e;
  color: #fff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  gap: 0.5em;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .active {
  background-color: #007a5e;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 100%;
  padding: 1em;
  font-size: 1em;
  border-radius: 0 0 8px 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  gap: 0.5em;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .active {
  background-color: #007a5e;
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(255, 248, 243, 0.9);
  width: 100%;
  padding: 10px;
  font-size: 0.95em;
  color: #333;
  text-align: center;
  font-style: italic;
}

/* ========== Datenschutz ========== */

.datenschutz-section {
  background-color: #fffaf3;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
}
.datenschutz-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #4a4a4a;
  text-align: center;
}

.datenschutz-section h3 {
  margin-top: 30px;
  font-size: 1.2em;
  color: #555;
}

/* ========== Unterseiten Style ========== */
.subpage-header {
  text-align: center;
  padding: 2em;
  background-color: #e6f4ea;
  border-bottom: 2px solid #5c9c8d;
}

.subpage-content {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  font-family: 'Open Sans', sans-serif;
}

.subpage-img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin: 1em auto;
  display: block;
}

.backlink {
  display: inline-block;
  margin-top: 2em;
  color: #5c9c8d;
  text-decoration: none;
  font-weight: bold;
}

.backlink:hover {
  text-decoration: underline;
}

body {
  font-family: sans-serif;
  background: #f9f9f9;
  color: #333;
  padding: 20px;
}



