/* ============================== HTML ============================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============================== Variablen & Grundfarben ============================== */
:root {
  --primary: #00b4d8;
  --accent: #0077b6;
  --dark: #111;
  --light-bg: #f9f9f9;
  --text: #333; /* Standard FlieÃŸtext */
  --text-light: #fff; /* nur fÃ¼r dunkle Overlays, Hero etc. */
  --nav-bg: rgba(0,0,0,0.8);
  --highlight: #00b4d8;
  --page-bg: #fcfcfa;
}

/* ============================== Read-more ============================== */
.read-more summary {
  cursor: pointer;
  font-weight: 600;
  color: #007acc; /* Akzentfarbe */
  list-style: none;
  margin-top: 0.5rem;
}

.read-more summary::marker {
  display: none;
}

.read-more summary::after {
  content: " â–¼";
  font-size: 0.85em;
}

.read-more[open] summary::after {
  content: " â–²";
}

/* ============================== Global ============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary);
}

/* ============================== Navigation â€“ FINAL ============================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
}

nav strong a {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Burger (Grundlayout) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Burger Animation */
.burger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================== Mobile & Tablet ============================== */
@media (max-width: 991px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: var(--nav-bg);
    text-align: center;
    padding: 12px 0;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .nav-links a {
    padding: 6px 0;
    line-height: 1.3;
    font-size: 0.95rem;
  }

  .nav-links a[href="#kontakt"] {
    margin: 10px auto 0;
    padding: 10px 20px;
    border: 1px solid var(--highlight);
    border-radius: 20px;
    width: fit-content;
  }
}

/* ============================== Hero / Startseite ============================== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 0;
  position: relative;
  text-align: center;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('images/hg_hund.jpg') center/cover no-repeat;
  z-index: -1;
}

.hero h1{ font-size:3rem;
 margin-bottom:20px;
 text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
 }
}

.hero h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 15px;
}

.hero-text {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.hero-text-small {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta-btn {
  margin-top: 35px;
  padding: 15px 35px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
}

.cta-btn:hover {
  background: var(--accent);
}

/* ============================== Sections ============================== */
main section {
  padding: 55px 30px;
  max-width: 1200px;
  margin: auto;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: var(--text);
}

main section.fade {
  opacity: 0;
  transform: translateY(40px);
}

main section.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 2.3rem;
}

h3 {
  text-align: center;
  margin-top: -10px;
  font-size: 2rem;
}

.section-spacing {
  margin-top: 40px;
  margin-bottom: 40px;
}

section h2 {
  margin-top: 0;
}

/* ================================ Belegungsplan sicher isoliert (zerstört keine bestehenden Styles)================================= */

#belegungsplan {
  text-align: center;
}

/* ErklÃ¤rung / Hinweis */
#belegungsplan .kalender-hinweis {
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 18px;
  background: var(--light-bg);
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Wrapper â€“ KEIN Einfluss auf andere Inhalte */
#belegungsplan .kalender-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
}

/* iFrame NUR im Belegungsplan */
#belegungsplan iframe {
  width: 100%;
  min-height: 460px;
  border: 3px solid var(--dark);
  border-radius: 14px;
  background: #fff;
}

/* Text unter dem Kalender */
#belegungsplan .kalender-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

#belegungsplan a:hover {
  color: var(--primary);
}
/* ============================== Sauna ============================== */
.sauna {
  position: relative;
  background: url('images/nordsee1.jpeg') center/cover no-repeat;
  border-radius: 20px;
  padding: 70px 30px;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.sauna-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.sauna-hero-text{
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}


.sauna p,
.sauna .gallery {
  position: relative;
  z-index: 1;
}

/* ================================ Sauna Subline größer machen ================================ */
.sauna .subline {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-top: 15px;
}

.sauna h2,


/* ============================== Mini-FAQ ============================== */
.mini-faq {
  max-width: 900px;
  margin: 30px auto 0;
}
/* ============================== Preise ============================== */

#preise {
  margin-bottom: 30px;
}

.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

/* Einheitliche Box */

 .price-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  font-size: 1.15rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease;
}

/* Hover nur visuell – KEIN transform */
@media (hover: hover) and (pointer: fine) {
  .price-box.highlight:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  }
}

/* Hinweis unter Preis – Platz immer reserviert */
.price-hint {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #777;

  height: 1em;          /* 🔥 verhindert Höhenänderung */
  opacity: 0;
  transition: opacity 0.25s ease;
}

.price-box.highlight {
  border: 2px solid rgba(0,180,216,0.35);
}



@media (hover: hover) and (pointer: fine) {
  .price-box.highlight:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    border-color: var(--accent);
  }

  .price-box.highlight:hover .price-hint {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Fußnote unter den Boxen */
.price-footnote {
  margin-top: -70px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}


/* ============================== Warum Renato ============================== */

#warum-renato {
  margin-top: 30px;
}

/* ============================== Form ============================== */
form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 16px;
}

input,
textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

button {
  padding: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: var(--primary);
}

/* ============================== Footer & Impressum ============================== */
/* Letzte Section vor Footer */
main section:last-of-type {
  margin-bottom: 0;   /* entfernt extra Abstand */
  padding-bottom: 20px; /* optional, etwas Luft */
}

/* Footer kompakter */
footer {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Optional: Trust-Footer / extra Box vor eigentlichem Footer */
.trust-footer {
  margin-bottom: 20px; /* vorher evtl. 50px+ */
}

.impressum {
  max-width: 800px;
  margin: auto;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

.impressum p {
  margin-bottom: 20px;
}

.impressum strong {
  color: var(--dark);
}

.impressum a {
  color: var(--accent);
  text-decoration: none;
}

.impressum a:hover {
  text-decoration: underline;
}

.impressum .copyright {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}

/* ================================================== Google Maps zentrieren ================================================== */
.map-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: none;
  border-radius: 16px;
}

/* Video-Grundlayout */
#nicki video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.video-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

@media (min-width: 992px) {
  #nicki video {
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }
}

h2 {
  font-size: 2rem;
}

/* ============================== Marketing Content â€“ Modern ============================== */
.intro-text {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 10px auto;
  text-align: center;
}

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 30px auto;
  max-width: 900px;
  list-style: none;
}

.highlights li {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Accordion */
.accordion {
  margin: 15px auto;
  max-width: 900px;
  border-radius: 14px;
  background: var(--light-bg);
  padding: 10px 20px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 12px 0;
}

.accordion summary::marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  transition: transform 0.3s ease;
}

.accordion[open] summary::after {
  content: "-";
}

.accordion ul {
  margin: 10px 0 15px 15px;
}

.accordion[open] {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* ============================== Trust-Footer ============================== */


/* Trust Footer */
.trust-footer {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 22px 25px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  background: #f4f6f8;
  border-radius: 14px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}

.trust-icon::after {
  content: "✔";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

/* ============================== Mobile Nav & Scrollbar ausblenden ============================== */

@media (max-width: 991px) {
 .nav-links {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Edge / IE */
  }

.nav-links.mobile-active {
  display: flex !important;
}

.nav-links::-webkit-scrollbar {
    display: none; /* Chrome / Android / iOS */
  }
}

/* ============================== Body Lock & Mobile Menü ============================== */

html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
}

.renato-note {
  max-width: 720px;
  margin: 50px auto 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

/* ============================== Galerie & FINAL & STABIL ============================== */

.gallery {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery img {
    height: 160px;
  }
}

.gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  nav {
    padding: 15px 16px;
  }
}

/* ============================== Mini-Galerie Desktop-Fix ============================== */

.mini-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 40px auto;
  align-items: start;
}

.mini-gallery-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-bg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mini-gallery-item img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block;
}

.mini-gallery-item p {
  margin: 10px 0 15px;
  font-size: 0.95rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .mini-gallery-item img {
    height: 150px;
  }
}


/* ==============================
   Info-Box & Preise / Hinweise
============================== */
.info-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 22px 26px;
  background: #f4f6f8;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Mobile: garantiert Abstand links/rechts */
@media (max-width: 768px) {
  .info-box {
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px;
  }
}

/* ==============================
   Section Intro & zentriert & ruhig
============================== */
.section-intro {
  max-width: 700px;
  margin: 0 auto 35px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

/* Mobile Feinschliff */
@media (max-width: 768px) {
  .section-intro {
    padding: 0 16px;
    font-size: 1rem;
  }
}

/* ==============================
   CTA-Textlink – einheitlich
============================== */
.cta-hint {
  text-align: center;
}

.cta-link {
  display: inline-block;
  margin-top: 8px;
  color: inherit;              /* normaler Text */
  font-weight: 600;
  text-decoration: none;       /* KEINE Linie */
  transition: color 0.25s ease;
}

.cta-link:hover {
  color: var(--accent);        /* blau beim Hover */
  text-decoration: none;
}

.cta-lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent);
}

/* ==============================
   🔧 Mobile Optimierung: Abstände & Layout-Fix
   ============================== */

@media (max-width: 768px) {

  /* Sektionen insgesamt schmaler einfassen */
  main section {
    padding: 40px 12px; /* vorher 55px 30px */
  }

  /* Info-Box: enger an Inhalt, trotzdem Luft */
  .info-box {
    margin-left: 8px;
    margin-right: 8px;
    padding: 18px;
  }

  /* Intro-Text: an Seiten anpassen */
  .section-intro {
    padding: 0 10px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Hero-Text: etwas kleiner, damit kein Zeilenbruch entsteht */
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  /* Galerie: Bilderfüllend, keine inneren Ränder */
  .gallery {
    padding: 0 8px;
  }

  /* Footer: optisch enger, symmetrisch */
  footer {
    padding: 40px 16px;
  }
}

/* ==============================
   GALERIE – AUFKLAPPBAR (NUR #galerie)
============================== */

#galerie .gallery-collapsible {
  overflow: hidden;
  max-height: 240px; /* exakt 1 Reihe Desktop */
  transition: max-height 0.6s ease;
}

/* Tablet */
@media (max-width: 991px) {
  #galerie .gallery-collapsible {
    max-height: 330px; /* 2 Bilder */
  }
}

/* Mobile */
@media (max-width: 599px) {
  #galerie .gallery-collapsible {
    max-height: 160px; /* 1 Bild */
  }
}

#galerie .gallery-collapsible.expanded {
  max-height: 5000px; /* bewusst groß, kein Cut */
}

.gallery-toggle-wrapper {
  text-align: center;
  margin-top: 30px;
}

.gallery-toggle-btn {
  padding: 14px 34px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-toggle-btn:hover {
  background: var(--primary);
}

#galerie .gallery-collapsible {
  scroll-margin-top: 90px; /* Navbar-Offset */
}

/* Sanftes Aufklappen der Galerie */
#galerie .gallery-collapsible {
  transition: max-height 0.6s ease, padding 0.4s ease;
}

/* Optional: leichtes Einblenden der neuen Bilder */
#galerie .gallery-collapsible.expanded .gallery img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  animation-delay: 0.1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger für jedes Bild (optional, wirkt sehr hübsch) */
#galerie .gallery-collapsible.expanded .gallery img:nth-child(1) { animation-delay: 0.05s; }
#galerie .gallery-collapsible.expanded .gallery img:nth-child(2) { animation-delay: 0.1s; }
#galerie .gallery-collapsible.expanded .gallery img:nth-child(3) { animation-delay: 0.15s; }
/* …bis zum 18. Bild ggf. hochzählen */

/* =========================
   Seitenende kompakt & sauber
   ========================= */

/* Letzte Section vor Footer */
main section:last-of-type {
  margin-bottom: 0;       /* keine extra Abstände */
  padding-bottom: 20px;   /* etwas Luft nach unten */
}

/* Trust-Footer kompakt */
.trust-footer {
  max-width: 900px;
  margin: 20px auto 0;    /* oben 20px, unten 0 */
  padding: 15px 20px;     /* kompakter */
  text-align: center;     /* alles zentriert */
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  background: #f4f6f8;
  border-radius: 14px;
}

/* Footer kompakt */
footer {
  padding: 30px 20px;     /* oben & unten kompakter */
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;     /* Zentrierung als Fallback */
}

/* Impressum zentrieren + flex für stabile Ausrichtung */
footer .impressum {
  display: flex;
  flex-direction: column;
  align-items: center;    /* horizontal zentrieren */
  text-align: center;     /* Text mittig */
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* Impressum Textelemente */
footer .impressum p,
footer .impressum strong,
footer .impressum a {
  margin: 0 0 10px 0;
}

/* Copyright */
footer .impressum .copyright {
  margin: 10px 0 0;       /* kleiner Abstand oben */
  font-size: 0.85rem;
  color: #777;
  display: block;
}

/* =========================
   Kontaktformular-Feedback
   ========================= */
#contactForm > div:last-child {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* Optional: sanftes Ein-/Ausblenden bei Änderung */
#contactForm > div:last-child.fade {
  opacity: 0;
}
