/* =====================================
   Allgemeine Basis-Styles
   ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}


/* =====================================
   Hauptmenü (Logo + Navigation)
   ===================================== */
.hauptmenue {
  background-color: #2e8b57;
  padding: 0.8em 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
}

.nav-logo {
  height: 50px;
  background-color: white;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 1.5em;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e2e2e2;
}

/* =====================================
   Sticky-Animation beim Scrollen
   ===================================== */
.sticky-animate {
  transition: all 0.3s ease;
  opacity: 0.98;
  transform: translateY(0);
  backdrop-filter: saturate(180%) blur(8px);
}

.sticky-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 6px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
  z-index: -1;
}

/* =====================================
   Startseite: Headerbild & Hero-Text
   ===================================== */
.hero-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text {
  color: white;
  text-shadow: 0 0 8px #000;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  max-width: 90%;
}

/* Tablet (z. B. bis 1024px) */
@media (max-width: 1024px) {
  .hero-image {
    height: 400px;
  }
  .hero-text {
    font-size: 2.5em;
  }
}

/* Smartphone (z. B. bis 768px) */
@media (max-width: 768px) {
  .hero-image {
    height: 300px;
  }
  .hero-text {
    font-size: 1.8em;
  }
}

/* =====================================
   Google - Rezessionen
   ===================================== */

.google-rezensionen {
  margin-top: 2em;
  padding: 1.5em;
  background: #f8f8f8;
  border-left: 5px solid #318d5a;
  border-radius: 5px;
}
.google-rezensionen h2 {
  margin-top: 0;
  color: #003366;
}
/*.review-button {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.6em 1.2em;
  background-color: #318d5a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}*/
.review-button {
  display: flex;
  justify-content: center;
  margin-top: 0.5em;
  padding: 0.6em 0.2em;
  background-color: #318d5a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.review-button:hover {
 background-color: #256f45;
}
.datenschutz-hinweis {
  font-size: 1em;
  margin-top: 1.5em;
  color: #262626;
}
.datenschutz-hinweis a {
  color: #318d5a;
  text-decoration: underline;
}


/* =====================================
   Startseite: Hauptinhalt
   ===================================== */
main {
  max-width: 960px;
  margin: auto;
  padding: 2em;
}
.willkommen {
  font-family: "Arial", sans-serif;
  font-size: 2.5em;
  color: #262626;
  text-align: center;
  margin-bottom: 20px;
} 
.start-intro {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background-color: #f8f8f8;
  border-left: 4px solid #318d5a;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
}
.start-intro p {
  margin-bottom: 1em;
}

.zeile2 {
  font-family: "Arial", sans-serif;
  font-size: 2em;
  color: #262626;
  text-align: center;
  margin-bottom: 20px;
} 
main h2, main h3 {
  margin-bottom: 0.5em;
}
.hr-abstand {
  margin: 20px 0 20px 0;
}
.text-mittig {
  font-family: "Arial", sans-serif;
  font-size: 1.3em;
  color: #262626;
  text-align: center;
  margin-bottom: 20px;}
ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 0.6em;
}

/* =====================================
   Startseite: Bild + Text zweispaltig
   ===================================== */
.intro-zweispaltig {
  display: flex;
  flex-direction: row;
  gap: 2em;
  margin: 2em 0;
  align-items: flex-start;
}

.intro-text {
  flex: 1;
  max-width: 50%;
}

.intro-bild {
  flex: 1;
  max-width: 50%;
}

.intro-bild img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.haustier-hinweis {
  color: #c0392b;
  font-weight: bold;
  margin-top: 1em;
}

/* Responsiv auf Mobilgeräten */
@media (max-width: 768px) {
  .intro-zweispaltig {
    flex-direction: column;
  }

  .intro-text, .intro-bild {
    max-width: 100%;
  }
}
/* =====================================
   Startseite: Rückzugsort + Ausstattung nebeneinander
   ===================================== */
.intro-spaltenblock {
  display: flex;
  gap: 3em;
  align-items: flex-start;
  margin: 3em 0;
  flex-wrap: wrap;
}

.intro-links,
.intro-rechts {
  flex: 1 1 45%;
}

.intro-links h2 {
  color: #2e8b57;
  margin-bottom: 0.5em;
}

.intro-rechts h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

.intro-rechts ul {
  list-style: none;
  padding-left: 0;
}

.intro-rechts li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.intro-rechts li::before {
  content: "";
  display: inline-block;
  width: 0.5em;
}
.intro-rechts li:hover {
  color: #2e8b57;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

/* Responsive: Spalten untereinander */
@media (max-width: 768px) {
  .intro-spaltenblock {
    flex-direction: column;
  }
  .intro-links,
  .intro-rechts {
    flex: 1 1 100%;
  }
}

/* =====================================
   Kontaktbereich mit CTA-Button
   ===================================== */
.kontakt-cta {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.kontaktinfo {
  flex: 1 1 60%;
}

.cta-button {
  flex: 1 1 35%;
  text-align: right;
} 
/* =====================================
   CTA-Block: Wunschtermin sichern
   ===================================== */
.cta-block {
  display: flex;
  justify-content: center;
  margin: 3em 0;
}

.cta-box {
  background-color: #6aa84f;
  color: white;
  padding: 2em;
  max-width: 600px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
}

.cta-box p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 1em;
}

.cta-link {
  background-color: white;
  color: #2e8b57;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-link:hover {
  background-color: #f2f2f2;
}


.button {
  background-color: #2e8b57;
  color: white;
  padding: 0.7em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #246b44;
}

@media (max-width: 768px) {
  .kontakt-cta {
    flex-direction: column;
    text-align: left;
  }
  .cta-button {
    text-align: left;
    margin-top: 1em;
  }
}

/* =====================================
   Google - Rezessionen
   ===================================== */
.google-rezensionen {
  margin-top: 2em;
  padding: 1.5em;
  background: #f8f8f8;
  border-left: 5px solid #318d5a;
  border-radius: 5px;
}
.google-rezensionen h2 {
  margin-top: 0;
  color: #262626;
  text-align: center;
}
.review-button {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.6em 1.2em;
  background-color: #318d5a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.review-button:hover {
  background-color: #318d5a;
}

/* =====================================
   Video
   ===================================== */
video {
  margin: 3em auto;
  max-width: 900px;
  padding: 1em;
  background: #eef6f0;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.video h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 1em;
}
.video video {
  width: 100%;
  border-radius: 4px;
}

/* =====================================
   Footer
   ===================================== */
footer {
  background-color: #eee;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  color: #555;
  margin-top: 2em;
}
footer a {
  color: #2e8b57;
  text-decoration: none;
  margin: 0 0.5em;
}

footer a:hover {
  text-decoration: underline;
}


/* =====================================
   Impressum & Datenschutz
   ===================================== */
main p {
  margin-bottom: 1em;
}

a {
  color: #318d5a;
}

a:hover {
  text-decoration: underline;
}

/* =====================================
   Media Queries (Mobil-Optimierung)
   ===================================== */
@media (max-width: 768px) {
  .nav-links a {
    margin-left: 10px;
    font-size: 0.9em;
  }

  .hero-text {
    font-size: 1.4em;
  }

  .logo {
    height: 40px;
  }
}
@media (max-width: 600px) {
  .intro-zweispaltig {
    flex-direction: column;
  }
}

/* =====================================
  Responsive Navigation für kleine Bildschirme
   ===================================== */

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5em;
    margin-top: 0;
  }
}
/* Bis 768px: Mobile-Menü */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-left: 1em;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.6em 1em;
    background: #256f45;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}
.nav-toggle {
  font-size: 1.1em;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;  /* Wichtig für vertikale Zentrierung im Flex-Container */
  margin: 10px 20px 10px 20px;
}


.headerbild {
  width: 100%;
  height: 600px;
  background-image: url('img/headerbild_startseite.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .headerbild {
    height: 300px;
    background-position: center top;
  }
}