:root {
  /* Farbpalette */
  --bg-creme: #fdfaf5;
  --bg-wiese: #e6f5e6;
  --bg-sonne: #fffbe6;
  --text-standard: #333;
  --text-akzent: #005a5a;
  --button-bg: #005a5a;
  --button-hover: #007f7f;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* ========== Reset & Grundlayout ========== */
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: 130vh;
  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;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* volle Höhe des Viewports */
}

main {
  flex: 1; /* nimmt den verfügbaren Platz ein */
}

footer {
  background-color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

/* ========== Inhaltsabschnitte: Über mich, Leistungen, Blog, Kontakt ========== */

.uebermich-section {
  background-color: var(--bg-creme);
  box-shadow: var(--shadow-soft);
  padding: 80px 20px;
}


.uebermich-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center; /* Bild mittig zum Text */
  max-width: 1200px;
  margin: 0 auto;
}

.uebermich-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.uebermich-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.uebermich-text {
  flex: 2 1 500px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.uebermich-text h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #005a5a;
}

/* Leistungen */

.leistungen-section {
  background-color: var(--bg-creme);
  box-shadow: var(--shadow-soft);
  padding: 60px 20px;
}


.leistungen-section h2 {
 text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #005a5a;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.leistung-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.leistung-box:hover {
  transform: translateY(-5px);
}

.leistung-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.leistung-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.leistung-box p {
  font-size: 1rem;
  color: #555;
}

.mehr-alle {
  text-align: center;
  margin-top: 40px;
}


/* Blog */

.blog-section {
  background-color: var(--bg-creme);
  box-shadow: var(--shadow-soft);
  padding: 60px 20px;
}


.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.blog-box, .frage-box {
  flex: 1 1 500px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-box img, .frage-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-box h3, .frage-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #005a5a;
}

.blog-box p, .frage-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.blog-button, .frage-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #005a5a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.blog-button:hover, .frage-button:hover {
  background-color: #007f7f;
}


.dackel-icon {
  width: 30px;
  height: auto;
}


/* Kontakt */

.kontakt-section {
  background-color: var(--bg-creme);
  box-shadow: var(--shadow-soft);
  padding: 60px 20px;
  text-align: center;
}

.kontakt-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.kontakt-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #005a5a;
}

.kontakt-wrapper p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.kontakt-form button {
  padding: 12px 24px;
  background-color: #005a5a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontakt-form button:hover {
  background-color: #007f7f;
}

.feedback-message {
  margin-top: 20px;
  padding: 15px;
  background-color: #e0f7e0;
  color: #005a5a;
  border: 1px solid #b2d8b2;
  border-radius: 6px;
  font-weight: bold;
}


/* ========== Unterseiten Therapie  ========== */

.therapie-section {
  background-color: var(--bg-creme);
  box-shadow: var(--shadow-soft);
  padding: 60px 20px;
}


.therapie-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center; /* ⬅️ Neu: Bild wird mittig zum Text ausgerichtet */
  max-width: 1200px;
  margin: 0 auto;
}


.therapie-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.therapie-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.therapie-text {
  flex: 2 1 500px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.therapie-text h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #005a5a;
}

/* ========== Galerie ========== */

.galerie-section {
  background-color: var(--bg-creme);
  padding: 60px 20px;
  text-align: center;
}

.galerie-tabs {
  margin-bottom: 30px;
}

.tab-button {
  background-color: #fff;
  border: 2px solid var(--text-akzent);
  color: var(--text-akzent);
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.tab-button.active {
  background-color: var(--text-akzent);
  color: #fff;
}

.galerie-slider-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px;
  
}

.hidden {
  display: none;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  padding: 10px;
  box-sizing: border-box;  
 }

/* ========== Gästebuch ========== */

section.gaestebuch {
  background-color: var(--bg-soft);
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

section.gaestebuch h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-accent);
}

section.gaestebuch form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

section.gaestebuch input,
section.gaestebuch textarea {
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);
  font-family: var(--font-main);
}

section.gaestebuch button {
  background-color: var(--button-bg);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

section.gaestebuch button:hover {
  background-color: var(--button-hover);
}

.gaestebuch-einleitung {
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* ========== Avatar-Auswahl ========== */

.avatar-fieldset {
  border: none;
  margin: 1rem 0;
}

.avatar-fieldset legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.avatar-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.avatar-gallery label {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease;
}

.avatar-gallery img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.2s ease;
}

.avatar-gallery input[type="radio"]:checked + img {
  border: 2px solid var(--text-accent);
  transform: scale(1.1);
}

.avatar-gallery label:hover img {
  transform: scale(1.05);
}

/* ========== Eintragsanzeige ========== */

.gaestebuch-eintrag {
  background-color: #f9f9f9;
  border-left: 5px solid var(--text-accent);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.eintrag-kopf {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.eintrag-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--border-light);
}

.eintrag-meta {
  display: flex;
  flex-direction: column;
}

.eintrag-name {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-main);
}

.eintrag-ort {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.eintrag-datum {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.eintrag-nachricht p {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-main);
}

/* ========== Blogpost ========== */

.blog-area {
  max-width: 800px;
  margin: auto;
  font-family: sans-serif;
  line-height: 1.6;
}

.blog-area .blog-header {
  margin-bottom: 20px;
}

.blog-area .blog-meta {
  color: #666;
  font-size: 0.9em;
}

.blog-area .blog-hero {
  width: 100%;
  margin: 20px 0;
}

.blog-area .blog-quote {
  background: #f0f0f0;
  padding: 10px 15px;
  border-left: 4px solid #6a9e6f;
  font-style: italic;
  margin: 20px 0;
}

.blog-area .blog-comments {
  margin-top: 40px;
}

.blog-area .comment-form textarea {
  width: 100%;
  padding: 10px;
}

.blog-area .comment-form button {
  margin-top: 10px;
  background: #6a9e6f;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}

.blog-area .comment-list {
  margin-top: 20px;
}

.blog-area .comment {
  background: #f9f9f9;
  padding: 10px;
  margin-bottom: 10px;
  border-left: 3px solid #6a9e6f;
}

.blog-area .blog-btn {
  margin: 0 10px;
  padding: 8px 15px;
  background: #6a9e6f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.blog-list li {
  list-style: none;
}

.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-card h3 {
  margin-top: 0;
  color: #333;
}

.blog-card small {
  color: #666;
  font-size: 0.85em;
}

.blog-card a {
  text-decoration: none;
  color: #6a9e6f;
  font-weight: bold;
}

.blog-card a:hover {
  text-decoration: underline;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.blog-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.blog-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.blog-card small {
  color: #666;
  font-size: 0.85em;
  display: block;
  margin-bottom: 10px;
}

.blog-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #6a9e6f;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.blog-btn:hover {
  background: #558a5a;
}

**** Leistungen Unterseite ****

.leistungen-detail .leistung {
  display: flex; 
  flex-direction: row; 
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.leistungen-detail .leistung img {
  flex: 0 0 250px; 
  max-width: 250px; 
  height: auto; 
  border-radius: 8px; 
  object-fit: cover;
}
.leistungen-detail .leistung .text {
  flex: 1 1 auto 
  line-height: 1.6;
}
@media (max-width: 768px) {
  .leistungen-detail .leistung {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leistungen-detail .leistung img {
    max-width: 100%;
  }
}
