/* ===== Globale Schriftart ===== */
html, body {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #4f2516;
  color: #f0eee6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Logo-Bereich */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  margin-top: 1%;
}

.logo img {
  height: 150px;
  width: auto;
  margin-left: 4%;
}

.divider {
  width: 1px;
  background: #f0eee6;
  margin: 0 20px;
  align-self: stretch;
}

/* Navigation */
.navbar {
  margin-top: 20px;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}


/* Fix: konstante Höhe, damit der Divider nicht springt */
.navbar a {
  text-decoration: none;
  color: #c9a98d ;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent; /* reserviert Platz für den Unterstrich */
  line-height: 1.4;                      /* stabile Klickfläche */
}

.navbar a:hover {
  color: #ffffff;
  transform: translateY(-3px);   /* schwebt leicht hoch (visuell, ohne Layout zu ändern) */
  border-bottom-color: #c9a98d ;  /* färbt nur um – Höhe bleibt gleich */
}


.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  font-size: 15px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 140vh;
  display: flex;
  align-items: center;
  justify-content: left;
  background-image: url("IMG/Home.JPG");
  background-repeat: no-repeat;
  background-size: cover;        /* sauber füllend */
  background-position: 60% 69%;  /* X% (links→rechts), Y% (oben→unten) => hier verschieben */
}


.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(79,37,22,1) 0%, rgba(79,37,22,0.95) 20%, rgba(201,169,141,0) 100%);
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(79,37,22,1) 0%, rgba(79,37,22,0.9) 20%, rgba(201,169,141,0) 100%);
  z-index: 1;
}

/* Hero Text */
.hero-overlay {
  position: relative;
  z-index: 2;
  padding-left: 12%;
  margin-top: 62%;
}

.hero-overlay h1 {
  font-size: 3.2rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin: 0;
}

.welcome-text p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: 12%;
  color: #f0eee6;
  line-height: 1.8;
  text-align: justify;
}


.nav-divider {
  display: block;
  width: 1900px;                 /* immer volle Browserbreite */
  height: 1px;
  background-color: #f0eee6;
  margin: 40px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);  /* sorgt dafür, dass der Strich nicht „übersteht“ */
}


/* ===== Footer ===== */
.footer {
  width: 100%;
  background: #4f2516;
  text-align: center;
  padding: 30px 0 20px;
  color: #f0eee6;
  font-size: 16px;
}

/* --- Links nebeneinander --- */
.footer-links {
  display: flex;
  justify-content: center; /* zentriert horizontal */
  gap: 120px; /* Abstand zwischen den Links */
  margin-bottom: 20px;
}

/* --- Links Styling --- */
.footer a {
  text-decoration: none;
  color: #f0eee6;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  margin: 0 8px; /* links & rechts Abstand */
}


.footer a:hover {
  color: #c9a98d;
  text-decoration: underline;
}

/* --- Copyright unten --- */
.copyright {
  font-size: 15px;
  color: #d6c4b3;
  margin-top: 20px;
  margin-bottom: 2%;
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  /* Grundschrift etwas kompakter */
  html, body {
    font-size: 16px;
  }

  /* Header / Logo / Divider */
  .container {
    padding: 14px 0;
    gap: 10px;
  }
  .logo img {
    height: 110px;
    margin-left: 0;
  }
  .divider {
    margin: 0 12px;
  }

  /* Navigation */
  .navbar {
    margin-top: 12px;
    padding: 8px 0;
  }
  .navbar ul {
    gap: 24px;
    flex-wrap: wrap; /* bricht bei Bedarf in zwei Zeilen */
  }
  .navbar a {
    font-size: 17px;
    padding: 6px 2px; /* bessere Klickfläche */
  }

  /* Dropdown im Tablet etwas breiter & näher an den Link */
  .dropdown-content {
    min-width: 200px;
    top: calc(100% + 6px);
  }

  /* Hero */
  .hero-section {
    height: 95vh;
    background-position: 50% 60%;
  }
  .hero-overlay {
    padding-left: 8%;
    margin-top: 45%;
  }
  .hero-overlay h1 {
    font-size: 2.4rem;
  }
  .welcome-text p {
    font-size: 1.05rem;
    max-width: 92%;
    margin-left: 8%;
    line-height: 1.75;
    text-align: justify;
  }

  /* Dividerlinie */
  .nav-divider {
    width: 100%;
    margin: 30px 0;
  }

  /* Footer */
  .footer-links {
    gap: 48px;
  }
  .footer a {
    font-size: 17px;
  }
  .copyright {
    font-size: 14.5px;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  /* Grundschrift wieder etwas runter */
  html, body {
    font-size: 15px;
  }

  /* Header / Logo oben stapeln */
  .container {
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    padding: 12px 0 6px;
  }
  .logo img {
    height: 90px;
  }
  .divider {
    display: none; /* Trenner mobil ausblenden */
  }

  /* Navigation: kompakt, zwei Zeilen möglich, große Touch-Ziele */
  .navbar {
    margin-top: 6px;
    padding: 6px 0 10px;
  }
  .navbar ul {
    gap: 14px;
    flex-wrap: wrap;
    padding: 0 12px;
  }
  .navbar a {
    font-size: 16px;
    padding: 8px 6px;               /* größere Touchfläche */
    border-bottom-width: 2px;       /* bleibt ruhig im Layout */
    transform: none !important;     /* kein Springen beim Hover */
  }

  /* Dropdown: mobil vollflächig unter dem Link */
  .dropdown-content {
    position: static;               /* nimmt normalen Fluss an */
    display: block;                 /* falls du es mobil immer anzeigen willst, sonst per JS steuern */
    width: 100%;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: #fff;
    margin-top: 6px;
  }
  .dropdown-content a {
    padding: 10px 12px;
    font-size: 15px;
  }

  /* Hero */
  .hero-section {
    height: 78vh;
    background-position: center center; /* Motiv zentrieren */
    background-size: cover;
  }
  .hero-overlay {
    padding-left: 6%;
    margin-top: 35vh;               /* Text weiter oben sichtbar */
  }
  .hero-overlay h1 {
    font-size: 1.9rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  }

  .welcome-text p {
    font-size: 1rem;
    max-width: 94%;
    margin-left: 6%;
    margin-right: 6%;
    line-height: 1.7;
    text-align: left;               /* mobil besser lesbar */
  }

  /* Dividerlinie */
  .nav-divider {
    width: 100%;
    margin: 24px 0;
    left: 0;
    transform: none;
  }

  /* Footer: untereinander */
  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer a {
    font-size: 16px;
  }
  .footer {
    padding: 22px 0 16px;
  }
  .copyright {
    font-size: 13.5px;
    margin-top: 14px;
    margin-bottom: 3%;
  }
}






/* ===== Über mich Bereich ===== */
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px;
  gap: 50px;
  flex-wrap: nowrap;
}

/* Linke Spalte */
.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* Abstand zwischen Bild und Icons */
  min-width: 360px;
}

/* Rechte Spalte */
.about-right {
  flex: 2;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-right: 9%;
  margin-top: -9px;
  color: #ffffff;
  text-align: justify;
}

.about-right strong {
  font-size: 20px;
  color: #ffffff;
}

/*Slideshow*/
.about-slider{
  position: relative;
  width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 18px;
}

.about-slides{ position: relative; width: 100%; height: 100%; }

.about-slides img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  will-change: opacity;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 18s;
  animation-fill-mode: both; /* Start ohne Flackern */
}

/* Bild 1: länger sichtbar */
.about-slides img:first-child{
  animation-name: crossfadeA;
}

/* Bild 2: kürzer sichtbar, komplementär zu Bild 1 */
.about-slides img:nth-child(2){
  animation-name: crossfadeB;
}

/* 18s total; Fade 3s (= 16.667%) */

/* Bild 1: 
   83.333–100% weich EIN
   0–50%        voll sichtbar
   50–66.667%   weich AUS
   66.667–83.333% unsichtbar
*/
@keyframes crossfadeA{
  0%, 50%       { opacity: 1; }
  66.667%,83.333% { opacity: 0; }
  100%          { opacity: 1; }
}

/* Bild 2 (Komplement):
   0–50%        unsichtbar
   50–66.667%   weich EIN
   66.667–83.333% voll sichtbar
   83.333–100%  weich AUS
*/
@keyframes crossfadeB{
  0%, 50%       { opacity: 0; }
  66.667%,83.333% { opacity: 1; }
  100%          { opacity: 0; }
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.social-icons svg {
  width: 25px;
  height: 25px;
  stroke: #ffffff;
  stroke-width: 1.4;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover svg {
  stroke: #b07250;
  transform: scale(1.15);
}

/* ===== Zitatbereich ===== */
.quote-section {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
}

.quote-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0%;
  z-index: 0;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.quote-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.quote-text h2 {
  font-size: 32px;
  font-style: italic;
  margin-bottom: 10px;
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  .about-section {
    padding: 40px 32px;
    gap: 36px;
    flex-wrap: wrap;          /* erlaubt Umbrechen */
  }

  .about-left {
    min-width: 320px;         /* enger als Desktop */
    flex: 1 1 320px;          /* darf schrumpfen */
  }

  .about-right {
    flex: 1 1 520px;
    max-width: 100%;
    margin-right: 0;
    font-size: 17px;
    line-height: 1.7;
  }
  .about-right strong { font-size: 19px; }

  /* Slideshow etwas kleiner */
  .about-slider {
    width: 320px;
    height: 410px;
    border-radius: 16px;
  }
  .about-slides img { border-radius: 16px; }

  /* Social Icons */
  .social-icons {
    gap: 16px;
  }
  .social-icons a {
    width: 32px; height: 32px;
  }
  .social-icons svg {
    width: 22px; height: 22px;
  }

  /* Zitatbereich */
  .quote-section {
    height: 60vh;
  }
  .quote-text {
    max-width: 680px;
    padding: 16px;
  }
  .quote-text h2 {
    font-size: 28px;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  .about-section {
    flex-direction: column;      /* übereinander */
    align-items: center;
    padding: 28px 18px;
    gap: 22px;
  }

  .about-left {
    min-width: 0;                /* verhindert Overflow */
    width: 100%;
    flex: 0 1 auto;
    gap: 18px;
  }

  .about-right {
    width: 100%;
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    text-align: left;            /* besser lesbar mobil */
  }
  .about-right strong { font-size: 18px; }

  /* Slideshow kompakt & zentriert */
  .about-slider {
    width: 88vw;
    max-width: 360px;
    height: 56vw;                /* Seitenverhältnis steuert Höhe */
    max-height: 460px;
    border-radius: 14px;
  }
  .about-slides img { border-radius: 14px; }

  /* Social Icons größer klickbar */
  .social-icons {
    gap: 14px;
    margin-top: 6px;
  }
  .social-icons a {
    width: 38px; height: 38px;
  }
  .social-icons svg {
    width: 24px; height: 24px;
    stroke-width: 1.6;
  }

  /* Zitatbereich mobil */
  .quote-section {
    height: 56vh;                /* etwas niedriger */
  }
  .wave {
    height: 110px;
  }
  .quote-img {
    object-position: center;     /* Motiv zentrieren */
  }
  .quote-overlay {
    background: rgba(0,0,0,0.35);
  }
  .quote-text {
    max-width: 92%;
    padding: 14px;
  }
  .quote-text h2 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
}












/* Systemische aufstellungsarbeit */
/* ====== Block 1: Systemische Aufstellungsarbeit ====== */
.block1 {
  font-size: 3.2rem;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 40px 20px;
}

.block1 h1 {
  font-size: 3.0rem;
  color: #ffffff;
  margin-bottom: -20px;
  font-family: "Cormorant Garamond", serif;
}

.block1 p {
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.9;
  color: #f0eee6;
  text-align: justify;
}

.block1 .content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: -25px;
}

.block1 .content .text {
  flex: 2;
  margin-top: 5%;
  min-width: 290px;
  color: #f0eee6;
}

.block1 .content img {
  flex: 1;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ====== Block 2 ====== */
.block2 {
  max-width: 2000px; /* breiter, damit Text + Bild mehr Platz haben */
  margin: 0 auto 100px;
  padding: 40px 10px;
}

.block2 h2 {
  font-size: 2.0rem;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  margin-top: 11%;    
  margin-bottom: -10px;  
  margin-left: 467px;
}

.block2 p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: justify;
}

.block2 .content {
  display: flex;
  flex-direction: row-reverse; /* Bild links */
  gap: 120px; /* 👈 viel größerer Abstand */
  align-items: flex-start;
  flex-wrap: wrap;
}

.block2 .content .text {
  flex: 2;
  min-width: 280px;
  color: #f0eee6;
  margin-top: 43px;
}

/* ====== Block 3 ====== */
.block3 {
  max-width: 2000px;
  margin: 0 auto 80px;
  padding: 40px 20px;
  position: relative;
}

.block3 h2 {
  font-size: 2.0rem;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  margin-bottom: -10px;
}

.block3 p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: justify;
}

.block3 .content {
  display: flex;
  gap: 190px; /* 👈 deutlich größerer Abstand */
  align-items: flex-start;
  flex-wrap: wrap;
}

.block3 .content .text {
  flex: 2;
  min-width: 280px;
  color: #f0eee6;
}

/* ====== Block 4 ====== */
.block4 {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 40px 20px;
}

.block4 h2 {
  font-size: 2.0rem;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  margin-bottom: 40px;
  margin-left: 468px;
}

.block4 p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: justify;
}

.block4 .content {
  display: flex;
  flex-direction: row-reverse; /* Bild links */
  margin-top: -65px;
  gap: 120px; /* 👈 großer Abstand */
  align-items: flex-start;
  flex-wrap: wrap;
}

.block4 .content .text {
  flex: 2;
  margin-top: 44px;
  min-width: 280px;
  color: #f0eee6;
}



/* ====== Slideshow ====== */
/* ===== Reusable Fade-Slideshow ===== */
.slideshow {
  width: min(100%, 350px);   /* begrenzen, aber max. so breit wie Container */
  aspect-ratio: 3 / 4;       /* 3:4 Hochformat */
  height: auto;              /* wird aus dem ratio berechnet */
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* Bilder bleiben wie bei dir */
.slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0; border-radius: inherit;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}



/* Weiches Ein-/Ausblenden, ohne Pause */
@keyframes fadeCross {
  0%   { opacity: 0; }
  20%  { opacity: 1; }  /* einblenden */
  50%  { opacity: 1; }  /* sichtbar halten */
  70%  { opacity: 0; }  /* ausblenden */
  100% { opacity: 0; }
}

/* ----- Variante: 2 Bilder ----- */
.slideshow.two img { animation-name: fadeCross; animation-duration: 10s; }
.slideshow.two img:nth-child(1) { animation-delay: 0s; }
.slideshow.two img:nth-child(2) { animation-delay: 5s; }

/* ----- Variante: 3 Bilder ----- */
.slideshow.three img { animation-name: fadeCross; animation-duration: 15s; }
.slideshow.three img:nth-child(1) { animation-delay: 0s; }
.slideshow.three img:nth-child(2) { animation-delay: 5s; }
.slideshow.three img:nth-child(3) { animation-delay: 10s; }

/* Barrierefreiheit: Animationen reduzieren, wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
  .slideshow img { animation: none; opacity: 1; }
  .slideshow img:not(:first-child) { display: none; }
}




/* === Spezielle Anpassungen je Block === */
/* Block 2 Bilder (z. B. nach oben verschieben) */
#slideshow2 img {
  object-position: center top;  /* oben zentrieren */
  margin-top: 2%;
}

/* Block 3 Bilder (z. B. nach unten verschieben) */
#slideshow3 img {
  object-position: center bottom; /* unten zentrieren */
  margin-top: 13%;
}

/* Block 4 Bilder (z. B. nach links verschieben) */
#slideshow4 img {
  object-position: left center; /* links zentrieren */
  margin-top: 12%;
}


/* ===== Footer (neue Klassen) ===== */
/* ===== Footer (fix & sichtbares Copyright) ===== */
.tiw-footer {
  width: 100%;
  background: #4f2516;
  text-align: center;
  padding: 28px 16px 24px;
  color: #f0eee6;
  font-size: 16px;
  position: relative;
}

/* Links in einer Zeile – optisch etwas nach unten */
.tiw-legal {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  position: relative;
  transform: translateY(14px);
}

.tiw-legal-link {
  text-decoration: none;
  color: #f0eee6;
  font-weight: 500;
  font-size: 18px;
  transition: color .3s ease, text-decoration .3s ease;
}
.tiw-legal-link:hover { color: #c9a98d; text-decoration: underline; }

/* Copyright – garantiert andere Farbe */
.tiw-footer .tiw-copy {
  margin: 0;
  margin-bottom: -12%;
  margin-left: 38%;
  position: relative;
  transform: translateY(24px);
  font-size: 15px;
  color: #c9a98d !important; /* gut lesbar & setzt sich durch */
}



/* Falls du weiterhin einen eigenen Divider nutzt, so definieren (beeinflusst die Höhe nicht) */
.tiw-divider {
  height: 1px;
  margin: 0;
  margin-bottom: 3%;
  display: block;
  width: 1900px;                 /* immer volle Browserbreite */
  background-color: #f0eee6;
  position: relative;
  left: 50%;
  transform: translateX(-50%);  /* sorgt dafür, dass der Strich nicht „übersteht“ */
}




/* Copyright-Zeile – zentriert, ohne negative Margins */
.tiw-copy {
  margin: 6px 20px 0px 408px;
  font-size: 15px;
  color: #542b07;   /* etwas heller/wärmer als Text, wie im Screenshot */
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  /* ---------- Block 1 ---------- */
  .block1 {
    font-size: 2.6rem;
    margin: 0 auto 60px;
    padding: 32px 16px;
  }
  .block1 h1 {
    font-size: 2.4rem;
    margin-bottom: -10px;
  }
  .block1 p {
    font-size: 18px;
    line-height: 1.8;
  }
  .block1 .content {
    gap: 24px;
    align-items: stretch;
  }
  .block1 .content img {
    max-width: 340px;
  }
  .block1 .content .text {
    margin-top: 2%;
    min-width: 260px;
  }

  /* ---------- Block 2 ---------- */
  .block2 {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 32px 12px;
  }
  .block2 h2 {
    font-size: 1.9rem;
    margin-top: 6%;
    margin-bottom: 0;
    margin-left: 0;         /* fix: keine harte linke Einrückung */
    text-align: center;     /* stattdessen sauber zentrieren */
  }
  .block2 p {
    font-size: 19px;
    line-height: 1.85;
  }
  .block2 .content {
    gap: 48px;              /* deutlich kleiner als 120px */
    align-items: center;
  }
  .block2 .content .text {
    margin-top: 20px;
    min-width: 260px;
  }

  /* ---------- Block 3 ---------- */
  .block3 {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 32px 16px;
  }
  .block3 h2 {
    font-size: 1.9rem;
    margin-bottom: 0;
    text-align: center;
  }
  .block3 p {
    font-size: 19px;
  }
  .block3 .content {
    gap: 56px;              /* statt 190px */
    align-items: center;
  }
  .block3 .content .text {
    min-width: 260px;
  }

  /* ---------- Block 4 ---------- */
  .block4 {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 32px 16px;
  }
  .block4 h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    margin-left: 0;         /* fix: keine harte linke Einrückung */
    text-align: center;
  }
  .block4 p {
    font-size: 18px;
    line-height: 1.85;
  }
  .block4 .content {
    margin-top: -20px;
    gap: 48px;
    align-items: center;
  }
  .block4 .content .text {
    margin-top: 16px;
    min-width: 260px;
  }

  /* ---------- Slideshow ---------- */
  .slideshow {
    width: min(100%, 300px);
    border-radius: 16px;
  }
  #slideshow2 img { margin-top: 0; }
  #slideshow3 img { margin-top: 8%; }
  #slideshow4 img { margin-top: 6%; }

  /* ---------- Footer ---------- */
  .tiw-footer {
    padding: 24px 16px 20px;
    font-size: 15.5px;
  }
  .tiw-legal {
    gap: 18px;
    transform: translateY(10px);
  }
  .tiw-legal-link {
    font-size: 17px;
  }
  .tiw-footer .tiw-copy {
    transform: translateY(18px);
    margin: 6px 0 0 0;      /* weg von fixen %-Werten */
    text-align: center;
  }
  .tiw-divider {
    width: 100%;
    margin-bottom: 32px;
    left: 0;
    transform: none;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  /* ---------- Block 1 ---------- */
  .block1 {
    font-size: 2.1rem;
    margin: 0 auto 40px;
    padding: 24px 14px;
  }
  .block1 h1 {
    font-size: 1.9rem;
    margin-bottom: 4px;
    text-align: center;
  }
  .block1 p {
    font-size: 16.5px;
    line-height: 1.75;
    text-align: left;
  }
  .block1 .content {
    gap: 18px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .block1 .content img {
    width: 100%;
    max-width: 420px;
  }
  .block1 .content .text {
    margin-top: 0;
    min-width: 0;
  }

  /* ---------- Block 2 ---------- */
  .block2 {
    margin: 0 auto 56px;
    padding: 22px 12px;
  }
  .block2 h2 {
    font-size: 1.6rem;
    margin-top: 18px;
    margin-bottom: 8px;
    text-align: center;
  }
  .block2 p {
    font-size: 16.5px;
    line-height: 1.75;
    text-align: left;
  }
  .block2 .content {
    flex-direction: column;       /* stapeln */
    gap: 18px;
    align-items: center;
  }
  .block2 .content .text {
    min-width: 0;
    margin-top: 0;
  }

  /* ---------- Block 3 ---------- */
  .block3 {
    margin: 0 auto 56px;
    padding: 22px 12px;
  }
  .block3 h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
  }
  .block3 p {
    font-size: 16.5px;
    line-height: 1.75;
    text-align: left;
  }
  .block3 .content {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .block3 .content .text {
    min-width: 0;
  }

  /* ---------- Block 4 ---------- */
  .block4 {
    margin: 0 auto 56px;
    padding: 22px 12px;
  }
  .block4 h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    margin-left: 0;
    text-align: center;
  }
  .block4 p {
    font-size: 16.5px;
    line-height: 1.75;
    text-align: left;
  }
  .block4 .content {
    flex-direction: column;       /* stapeln */
    gap: 18px;
    margin-top: 0;
    align-items: center;
  }
  .block4 .content .text {
    margin-top: 0;
    min-width: 0;
  }

  /* ---------- Slideshow ---------- */
  .slideshow {
    width: min(100%, 260px);
    border-radius: 14px;
  }
  #slideshow2 img,
  #slideshow3 img,
  #slideshow4 img {
    margin-top: 0;                /* keine versetzten Crops mobil */
    object-position: center;
  }

  /* ---------- Footer ---------- */
  .tiw-footer {
    padding: 18px 12px 16px;
    font-size: 15px;
  }
  .tiw-legal {
    flex-direction: column;       /* untereinander */
    gap: 10px;
    transform: none;
    margin-top: 6px;
  }
  .tiw-legal-link {
    font-size: 16px;
  }
  .tiw-footer .tiw-copy {
    transform: none;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 14px;
  }
  .tiw-divider {
    width: 100%;
    margin: 18px 0;
    left: 0;
    transform: none;
  }
}



/*EmKö*/
.collage {
  margin-top: 8%;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}


.collage img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}


/* Gemeinsame Basis-Einstellungen */
.collage img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Einzelne Einstellungen pro Bild */
.bild1 {
  width: 380px;
  height: 350px;
  position: relative;
}

.bild2 {
  width: 364px;
  height: 350px;
  position: relative;
}

.bild3 {
  width: 384px;
  height: 350px;
  position: relative;
}

.bild4 {
  width: 384px;
  height: 350px;
  position: relative;
}

.bild5 {
  width: 380px;
  height: 350px;
  position: relative;
}


.text-bereich strong {
  font-weight: bold;
  color: #ffffff;
}

.text-bereich {
  max-width: 1150px;
  margin: 9% auto 5%;
  text-align: left;
}

.text-bereich p {
  font-size: 20px;
  line-height: 1.9;      /* angenehme Lesbarkeit */
  color: #ffffff;
  margin: 0 0 18px;      /* knapper Absatzabstand */
  text-align: justify;
}

/* Überschriften */
.text-bereich .sub1,
.text-bereich .sub2,
.text-bereich .sub3,
.text-bereich .sub4 {
  color: #ffffff;
  font-weight: 700;
  margin: 102px 0 32px;   /* Abstand ober/unter der Überschrift */
}

.text-bereich .sub1 { font-size: 44px; }
.text-bereich .sub2,
.text-bereich .sub3,
.text-bereich .sub4 { font-size: 28px; }


/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  /* Collage: in mehrere Zeilen umbrechen, gleichmäßige Kacheln */
  .collage {
    margin-top: 6%;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 16px;
  }

  /* Starre Pixel-Maße der Einzelbilder auf flexible Kacheln setzen */
  .collage img,
  .bild1, .bild2, .bild3, .bild4, .bild5 {
    flex: 1 1 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
    width: auto;                 /* überschreibt fixe Breite */
    height: 230px;               /* einheitliche Kachelhöhe */
    object-fit: cover;           /* sauberer Zuschnitt */
    border-radius: 12px;
  }

  /* Textbereich etwas schmaler + Typo entspannter */
  .text-bereich {
    max-width: 900px;
    margin: 6% auto 5%;
    padding: 0 16px;
  }
  .text-bereich p {
    font-size: 19px;
    line-height: 1.85;
    text-align: justify;
  }

  /* Überschriften kompakter */
  .text-bereich .sub1 { font-size: 40px; margin: 60px 0 26px; }
  .text-bereich .sub2,
  .text-bereich .sub3,
  .text-bereich .sub4 { font-size: 26px; margin: 44px 0 22px; }
}


/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  /* Collage: 2-Spalten-Grid für ruhiges Layout */
  .collage {
    margin-top: 7%;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 12px;
  }

  /* Alle starre Maße vollständig auf responsive Setzen */
  .collage img,
  .bild1, .bild2, .bild3, .bild4, .bild5 {
    width: 100% !important;
    max-width: 100%;
    height: 40vw;                /* dynamische Höhe relativ zur Breite */
    min-height: 150px;           /* nie zu klein */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.18);
  }

  /* Textbereich mobile: volle Breite mit Rand, bessere Lesbarkeit */
  .text-bereich {
    max-width: 100%;
    margin: 8% auto 6%;
    padding: 0 14px;
    text-align: left;
  }
  .text-bereich p {
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 16px;
    text-align: left;            /* mobil besser als Blocksatz */
  }

  /* Überschriften mobil */
  .text-bereich .sub1 { font-size: 32px; margin: 42px 0 20px; }
  .text-bereich .sub2,
  .text-bereich .sub3,
  .text-bereich .sub4 { font-size: 24px; margin: 30px 0 16px; }
}




/*Frauenkreise*/
/* Alles in der Unterseite hat jetzt den Wrapper */
.unterseite-wrapper {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  padding: 0;
}

.unterseite-wrapper .content {
  display: flex;
  max-width: 1127px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: justify;
}

/* Linke Spalte mit Bildern */
.unterseite-wrapper .bilder-spalte {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 256px;
}

.unterseite-wrapper .bilder-spalte img {
  width: 355px;
  height: 355px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 20px;
}

.frauenkreis-wrapper {
  max-width: 900px;
  margin: 0px auto;
  padding: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.8;
  margin-left: 7%;
}

/* Eigenständige Überschrift */
.frauen-headline {
  text-align: left;       /* linksbündig statt center */
  margin-left: -65%;       /* gleicht sich an Textposition an */
  margin-top: 78px;
  margin-bottom: 77px;
  color: #ffffff;
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.4;
}


.frauenkreis-wrapper h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.frauenkreis-wrapper p {
  margin-bottom: 20px;
}



.frauenkreis-wrapper li {
  margin-bottom: 8px;
}


/*Seminare*/
.extra-text {
  text-align: center;      /* Text zentrieren */
  font-size: 1.3rem;       /* etwas größerer Text */
  color: #f0eee6;          /* gleiche Farbe wie restlicher Text */
  margin: 90px auto;       /* Abstand oberhalb/unterhalb */
  margin-bottom: 200px;
  max-width: 800px;        /* nicht zu breit laufen lassen */
  line-height: 1.6;        /* bessere Lesbarkeit */
}


/*Veranstaltungen*/
.veranstaltung-bilder {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 6px;             /* 8px vertikal, 15px horizontal */
  justify-content: center;
  align-items: center;
  margin-top: 190px;
  margin-bottom: 11%;
}

.veranstaltung-bilder img {
  width: 600px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: none;
}


.textbereich {
  max-width: 1000px;    /* Breite begrenzen */
  margin: 50px auto;   /* zentrieren */
  margin-left: 16%;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
  color: #fff;         /* Textfarbe */
  font-size: 20px;
  position: absolute;
}

/* Link-Bild als Positionierungs-Container */
.bild {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

/* Bilder einheitlich */
.veranstaltung-bilder img {
  width: 600px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: none;
  
}

/* Der klickbare Text */
.overlay-link {
  position: absolute;

  /* >>> Position hier feinjustieren <<< */
  /* So sitzt der Text auf dem hellen Bereich links */
  left: 17%;
  bottom: calc(14% - 18px);   /* 12px extra Luft nach oben */


  background: rgba(79, 37, 22, 0.85);  /* dunkles Braun, halbtransparent */
  color: #f0eee6;
  padding: 10px 14px;
  border-radius: 9999px;               /* Pillen-Form */
  font-size: clamp(16px, 1.4vw, 20px);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* Hover/Focus-Effekte */
.bild:hover .overlay-link,
.bild:focus .overlay-link {
  text-decoration: underline;
  transform: translateY(-2px);
}


/* Box für alle Flyer */
.flyer-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;  /* Abstand zwischen Spalten */
  row-gap: 80px;     /* Abstand zwischen den Reihen */
  max-width: 1200px;
  margin: 60px auto;
  margin-top: -6%;
}


/* Einzelne Flyer (der <a>-Tag) */
.flyer {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.flyer:hover { transform: translateY(-8px); }

/* Bilder im Flyer */
.flyer img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  /* Grundlayout enger */
  .unterseite-wrapper .content {
    gap: 24px;
    max-width: 1000px;
    padding: 0 16px;
  }

  /* Linke Spalte/Bilder */
  .unterseite-wrapper .bilder-spalte {
    margin-top: 120px;
    gap: 16px;
    align-items: center;
  }
  .unterseite-wrapper .bilder-spalte img {
    width: 300px;
    height: 300px;
    margin-left: 0;
  }

  /* Headline + Textkörper */
  .frauen-headline {
    margin-left: 0;
    text-align: center;
    font-size: 40px;
    margin-top: 48px;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  .frauenkreis-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 16px;
    font-size: 19px;
    line-height: 1.75;
  }
  .frauenkreis-wrapper h2 {
    font-size: 21px;
  }

  /* Seminare-Block */
  .extra-text {
    font-size: 1.15rem;
    margin: 60px auto 120px;
    max-width: 760px;
    padding: 0 16px;
  }

  /* Veranstaltungen: 2 Spalten, responsive Bilder */
  .veranstaltung-bilder {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 80px;
    margin-bottom: 8%;
    padding: 0 16px;
  }
  .veranstaltung-bilder img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Textbereich nicht mehr absolut – fließt mit */
  .textbereich {
    position: static;
    max-width: 820px;
    margin: 24px auto;
    padding: 0 16px;
    font-size: 19px;
    line-height: 1.7;
  }

  /* Overlay-Link etwas kleiner und etwas weiter links */
  .overlay-link {
    left: 12%;
    bottom: calc(12% - 12px);
    padding: 8px 12px;
    font-size: clamp(14px, 1.6vw, 18px);
  }

  /* Flyer: 2 Spalten */
  .flyer-box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 16px;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  /* Stack-Layout */
  .unterseite-wrapper .content {
    flex-direction: column;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 14px;
    text-align: left; /* besser lesbar als Blocksatz */
  }

  /* Bilder links: mittig, quadratisch, responsive */
  .unterseite-wrapper .bilder-spalte {
    margin-top: 24px;
    gap: 12px;
    align-items: center;
  }
  .unterseite-wrapper .bilder-spalte img {
    width: 82vw;
    height: 82vw;            /* quadratisch */
    max-width: 420px;
    max-height: 420px;
    margin-left: 0;
    object-fit: cover;
  }

  /* Headline + Fließtext */
  .frauen-headline {
    font-size: 32px;
    text-align: left;
    margin: 26px 0 18px 0;
    line-height: 1.25;
  }
  .frauenkreis-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0 2px;          /* minimaler Rand – du hast bereits 14px außen */
    font-size: 18px;
    line-height: 1.7;
  }
  .frauenkreis-wrapper h2 {
    font-size: 20px;
    margin-top: 22px;
  }
  .frauenkreis-wrapper p,
  .frauenkreis-wrapper li {
    margin-bottom: 14px;
  }

  /* Seminare */
  .extra-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 34px auto 60px;
    max-width: 92%;
  }

  /* Veranstaltungen: 1 Spalte */
  .veranstaltung-bilder {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 10%;
    padding: 0;
  }
  .veranstaltung-bilder img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Textbereich vollbreit, fließend */
  .textbereich {
    position: static;
    max-width: 100%;
    margin: 18px 0 0 0;
    padding: 0;
    font-size: 17.5px;
    line-height: 1.65;
  }

  /* Overlay-Link: mobil als normaler Button unter dem Bild */
  .overlay-link {
    position: static;
    display: inline-block;
    margin: 8px 0 14px 0;
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 9999px;
  }

  /* Flyer: 1 Spalte */
  .flyer-box {
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
    max-width: 640px;
    margin: 28px auto 40px;
    padding: 0 12px;
  }
}






/*Konditionen*/
/* === Kondiitonen & Kontaktbereich === */
.kontakt-flyer-box {
  max-width: 1200px;
  margin: 100px auto;
  padding: 50px 60px;
  color: #f0eee6;
}

/* === Flex-Container für Flyer & Formular === */
.kontakt-flyer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Oberkanten bündig */
  gap: 60px;
  flex-wrap: wrap;
}

/* === Linke Seite === */
.flyer-links img {
  width: 100%;
  max-width: 508px;
  margin-top: 4%;
  height: auto;
  border-radius: 18px;
  box-shadow: none;
}

/* === Rechte Spalte: Formular + Text === */
.contact-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* bündig oben */
  align-items: stretch;
  max-width: 550px;
}

/* === Formular === */
.contact-form {
  background: rgba(79, 37, 22, 0.9);
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.contact-form h2 {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 26px;
  margin-top: -1%;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-family: "Cormorant Garamond", serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  background: #6f4320;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #7e5739;
}

/* === Text unter Formular === */
.flyer-formtext {
  margin-top: 21px; /* direkter Abstand unter Formular */
  font-size: 19px;
  line-height: 1.7;
  color: #f0eee6;
  text-align: justify;
  font-family: "Cormorant Garamond", serif;
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  .kontakt-flyer-box {
    max-width: 1000px;
    margin: 70px auto;
    padding: 32px 28px;
  }

  .kontakt-flyer-container {
    gap: 32px;
    align-items: stretch;
  }

  /* Linke Spalte (Flyer) */
  .flyer-links img {
    max-width: 420px;
    border-radius: 16px;
    margin-top: 0;
  }

  /* Rechte Spalte (Form + Text) */
  .contact-column {
    max-width: 520px;
  }

  .contact-form {
    padding: 22px 24px;
    border-radius: 10px;
  }
  .contact-form h2 { font-size: 24px; margin-bottom: 16px; }
  .contact-form label { margin: 10px 0 6px; }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 10px 12px;
  }
  .contact-form textarea { min-height: 120px; }
  .contact-form button { padding: 12px; font-size: 17px; }

  .flyer-formtext {
    font-size: 18px;
    line-height: 1.75;
    margin-top: 18px;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  .kontakt-flyer-box {
    margin: 40px auto;
    padding: 18px 14px;
  }

  .kontakt-flyer-container {
    flex-direction: column;   /* stapeln */
    gap: 20px;
  }

  /* Flyerbild vollbreit */
  .flyer-links img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  /* Formular + Text vollbreit */
  .contact-column {
    max-width: 100%;
  }

  .contact-form {
    padding: 16px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  }
  .contact-form h2 {
    font-size: 20px;
    margin: 0 0 12px 0;
  }
  .contact-form label {
    font-size: 16px;
    margin: 8px 0 6px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 12px 12px;       /* größere Touch-Ziele */
  }
  .contact-form textarea { min-height: 130px; }
  .contact-form button {
    padding: 13px;
    font-size: 16.5px;
    border-radius: 8px;
  }

  .flyer-formtext {
    font-size: 17px;
    line-height: 1.65;
    text-align: left;        /* mobil besser lesbar als Blocksatz */
    margin-top: 14px;
  }
}





/*Kontakt*/
/* Kontaktbereich gesamt */
.kontakt-section {
  background-color: #4f2516; /* dein Braunton */
  color: #f0eee6;
  padding: 60px 0;
}

/* Hauptcontainer – nebeneinander */
.kontakt-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px; /* Abstand zwischen Text und Formular */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* responsive – bei kleineren Bildschirmen untereinander */
}

/* Linke Spalte – Text */
.kontakt-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
}

.kontakt-text h2 {
  font-size: 30px;
  font-weight: bold;
  color: #f0eee6;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.kontakt-liste {
  display: grid;
  grid-template-columns: 130px auto;
  gap: 8px 20px;
  margin-top: 20px;
}

/* Rechte Spalte – Formular */
.contact-form {
  flex: 1;
  margin-top: 3%;
  min-width: 320px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.contact-form h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 480px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: inherit;
}


.contact-form button {
  background: #8c6441;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #714d2e;
}


.map {
  display: flex;
  justify-content: center;   /* zentriert horizontal */
  align-items: center;
  padding: 40px 0;           /* Abstand oben/unten */
  background-color: #4f2516; /* optional: Hintergrund passend zu deiner Seite */
}

.map iframe {
  width: 1150px;                /* Breite der Karte (z. B. 80 % des Inhaltsbereichs) */
  max-width: 1500px;          /* maximale Breite */
  height: 350px;             /* Höhe etwas kleiner als vorher */
  border: 0;
  border-radius: 20px;       /* abgerundete Ecken */
  box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* sanfter Schatten */
}



.rechtlicher-hinweis {
  margin-top: 120px;         /* SEHR großer Abstand nach oben */
  max-width: 1100px;
  margin-left: 174px;
  margin-right: auto;
  padding: 40px;
  background-color: #34150b; /* etwas dunkler als Hintergrund, optional */
  border-radius: 12px;
  color: #f0eee6;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.rechtlicher-hinweis h3 {
  margin-top: 25px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  .kontakt-section {
    padding: 48px 0;
  }

  .kontakt-container {
    gap: 36px;
    max-width: 1000px;
    padding: 0 20px;
  }

  /* Linke Spalte (Text) */
  .kontakt-text {
    font-size: 17.5px;
    line-height: 1.7;
    max-width: 520px;
  }
  .kontakt-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .kontakt-liste {
    grid-template-columns: 120px 1fr;
    gap: 8px 16px;
  }

  /* Rechte Spalte (Form) */
  .contact-form {
    margin-top: 0;
    max-width: 520px;
    padding: 22px;
    border-radius: 10px;
  }
  .contact-form h2 { font-size: 23px; }
  .contact-form label { margin-top: 8px; }
  .contact-form input,
  .contact-form textarea {
    width: 100%;            /* statt fixer 480px */
    font-size: 16px;
    padding: 10px 12px;
  }
  .contact-form textarea { min-height: 120px; }
  .contact-form button { padding: 12px; font-size: 16.5px; }

  /* Karte */
  .map { padding: 28px 0; }
  .map iframe {
    width: 92%;
    max-width: 1000px;
    height: 340px;
    border-radius: 16px;
  }

  /* Rechtlicher Hinweis */
  .rechtlicher-hinweis {
    margin: 60px auto 0;
    max-width: 920px;
    padding: 28px;
    font-size: 16.5px;
    line-height: 1.75;
  }
  .rechtlicher-hinweis h3 { font-size: 20px; }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  .kontakt-section {
    padding: 32px 0;
  }

  .kontakt-container {
    flex-direction: column;     /* stapeln */
    gap: 20px;
    max-width: 100%;
    padding: 0 14px;
  }

  /* Linke Spalte (Text) */
  .kontakt-text {
    min-width: 0;
    max-width: 100%;
    font-size: 16.5px;
    line-height: 1.65;
  }
  .kontakt-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .kontakt-liste {
    grid-template-columns: 1fr; /* untereinander */
    gap: 6px 0;
  }

  /* Formular */
  .contact-form {
    min-width: 0;
    max-width: 100%;
    padding: 16px 14px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.06);
  }
  .contact-form h2 { font-size: 20px; margin-bottom: 12px; }
  .contact-form label { font-weight: 600; font-size: 15.5px; }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    margin-bottom: 12px;
  }
  .contact-form textarea { min-height: 130px; }
  .contact-form button {
    padding: 13px;
    font-size: 16px;
    border-radius: 8px;
  }

  /* Karte */
  .map { padding: 18px 0; }
  .map iframe {
    width: 100%;
    max-width: 100%;
    height: 280px;
    border-radius: 12px;
  }

  /* Rechtlicher Hinweis */
  .rechtlicher-hinweis {
    margin: 32px 0 0 0;
    max-width: 100%;
    padding: 16px;
    background-color: #3a1a0f;
    font-size: 15.5px;
    line-height: 1.65;
    text-align: left;           /* mobil besser als Blocksatz */
  }
  .rechtlicher-hinweis h3 { font-size: 18px; letter-spacing: .5px; }
}








/*Impressum*/
.textblock {
  max-width: 800px;
  margin: 30px auto;
  padding: 40px 60px;

  border-radius: 12px;
  color: #f0eee6;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.textblock h2 {
  font-size: 35px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;
}


/* ========== TABLET (bis 1023px) ========== */
@media (max-width: 1023px) {
  .textblock {
    max-width: 900px;      /* darf etwas breiter wirken */
    margin: 60px auto;
    padding: 32px 36px;    /* weniger Rand */
    font-size: 17.5px;
    line-height: 1.75;
  }

  .textblock h2 {
    font-size: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
  }
}

/* ========== SMARTPHONE (bis 767px) ========== */
@media (max-width: 767px) {
  .textblock {
    max-width: 100%;
    margin: 28px auto;
    padding: 18px 16px;    /* kompakter Innenabstand */
    font-size: 16.5px;
    line-height: 1.7;
    text-align: left;      /* mobil besser als Blocksatz */
  }

  .textblock h2 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
}
