/* ==========================================================================
   STYLE.CSS – Bootstrap 5 Anpassungen & Custom Styles
   ==========================================================================
   Hier kannst du dein eigenes Design auf Basis der Bootstrap-Standardwerte
   individuell anpassen, ohne die Bootstrap-Dateien selbst zu verändern.
   -------------------------------------------------------------------------- */

/* ==========================================================================
   1. Root-Variablen – Farben, Schriftgrößen, Abstände etc.
   ========================================================================== */

:root {
  /* Hauptfarben (Bootstrap Variablen können überschrieben werden) */
  --bs-primary: #b0060b;
  --bs-secondary: #6c757d;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --section-space: clamp(60px, 8vw, 120px);
  --bs-tertiary-bg-rgb: 255, 255, 255;
  --bs-link-color: #b0060b;
  --bs-link-color-rgb: 176, 6, 11;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #640008;
  --bs-link-hover-color-rgb: 100, 0, 8;	

  /* Eigene Farbvariablen 
	
  Red 176 6 11
  #b0060b
  Dark Red 100 0 8
  #640008
  Green 101 166 163
  #65A6A3	
	
  Red 228,88,75
	#e4584b
	
  Green 137,197,189	
	#89c5bd
	
  Yellow 231,165,69
	#e7a545
	
  Brown 5,2,45
	#502e2d
  
  Cream 255,239,209
    #ffefd1
	*/
	
  --color-accent: #ff5c00;
  --color-bg-topbar: #f9f9f9;
  --color-bg-footer: rgba(101,166,163,1);
  
  
}

.txt-red {color:#b0060b}
.txt-green {color:#65A6A3}

.bg-red 	{background:  rgba(176,6,11,0.3);}
.bg-red-op 	{background:  rgba(176,6,11,0.3);}
.bg-green	{background:  rgba(101,166,163,0.3);}

/* bitter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bitter-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bitter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/bitter-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/libre-baskerville-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-baskerville-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/libre-baskerville-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ==========================================================================
   2. Allgemeine Basiselemente
   ========================================================================== */
@keyframes fadein{from{opacity:0;}to{opacity:1;}}@-moz-keyframes fadein{from{opacity:0;}to{opacity:1;}}@-webkit-keyframes fadein{from{opacity:0;}to{opacity:1;}}@-o-keyframes fadein{from{opacity:0;}to{opacity:1;}}

html {scroll-behavior: auto !important;}

html, body {overscroll-behavior-y: none}

body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-overflow-scrolling: auto;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  animation:fadein 1.2s;-moz-animation:fadein 1.2s;-webkit-animation:fadein 1.2s;
  scroll-margin-top: 80px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   2.1 Responsive Typografie
   ========================================================================== */

/* Basis-Schriftgröße */
body {
  font-size: clamp(16px, 1vw, 18px);
}

/* Überschriften */
h1, .h1-head {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

h2, .h2-head {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.45;
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
}

h3, .h3-head {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

h4, .h4-head {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
}

h5, .h5-head {
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
}

footer h5{
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  line-height: 1.45;
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;	
}

h6, .h6-head {
  font-size: clamp(1rem, 1.1vw, 1.1rem);	
}

h1, h2, h3, h4, h5, h6 {text-wrap:balance}

/* Fließtext */
p {
  font-size: clamp(1rem, 0.9vw, 1.125rem);
}

.text-primary {
    color: #b0060b !important;
}

/* Basis-Link */
.link-chevron-bodytxt {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

/* Chevron */
.link-chevron-bodytxt::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
}

/* Text separat behandeln */
.link-chevron-bodytxt span {
  text-decoration: none;
}

/* Hover: nur Text unterstreichen */
.link-chevron-bodytxt:hover span {
  color:#b0060b;
  text-decoration: underline;
}

/* Optional: sanfte Animation */
.link-chevron-bodytxt ::before {
  transition: transform 0.2s ease;
}

.link-chevron-bodytxt:hover::before {
  transform: translateX(3px);
  color: #640008;	
}

img.logo-hmh-start {width: 250px;height: auto;}

@media (min-width: 992px) and (max-width: 1197.97px)
{
img.logo-hmh-start {width: 200px;height: auto;}
	
}

/* ==========================================================================
   2.2 Bootstrap Responsive Typografie
   ========================================================================== */

/* Große Display Headlines (Hero, große Sections) */

.display-1 {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.display-2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.1;
}

.display-3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.display-4 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.display-5 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.display-6 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}


/* Lead Text (größerer Einleitungstext) */

.lead {
  font-size: clamp(1.1rem, 1.2vw, 2rem);
  line-height: 1.6;
  text-wrap: balance;	
}


/* Kleine Texte */

small,
.small {
  font-size: clamp(0.8rem, 0.8vw, 0.9rem);
}

/* ==========================================================================
   3. Topbar
   ========================================================================== */

.bg-light {
  background-color: var(--color-bg-topbar) !important;
}

.bg-light .text-muted {
  color: #666 !important;
}

/* Dropdown-Fix: verhindert, dass das Menü unter der Navbar oder dem Header verschwindet */
.bg-light .dropdown-menu {
  z-index: 2000 !important; /* liegt über Navbar (1030) & Carousel */
}

/* Optional: Dropdown-Design */
.dropdown-menu {
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

.navbar {
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(136, 136, 136, 0.4);	
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--bs-dark);
  padding: 0.75rem 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--bs-primary);
}

/* Dropdown – feineres Styling */
.navbar .dropdown-menu {
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1);
}

/* Dropdown-Links beim Hover */
.navbar .dropdown-item:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

/* Navigation Pillen */
.navbar .nav-link, .navbar .nav-link:focus  {
  border: 2px solid #b0060b;   /* sichtbarer Rahmen */
  border-radius: 6px;        /* Pillenform */
  padding: 4px 18px !important;
  margin-left: 0.4rem;
  color: #b0060b;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;	
  font-size: clamp(1rem, 0.9vw, 1.125rem) !important;
}

.navbar .nav-link, .navbar .nav-link:focus  {
  border: 2px solid #b0060b;   /* sichtbarer Rahmen */
  border-radius: 6px;        /* Pillenform */
  padding: 4px 18px !important;
  margin-left: 0.4rem;
  color: #b0060b;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;	
  font-size: clamp(1rem, 0.9vw, 1.125rem) !important;
}

/* Hover – klarer Farbwechsel */
.navbar .nav-link:hover {
  background-color: #b0060b;
  color: #ffffff;
  border-color: #b0060b;
}

/* aktiver Menüpunkt */
.navbar .nav-link.active {
  background-color: #b0060b;
  color: #ffffff;
  border-color: #b0060b;
}

.navbar-nav .nav-item {
  margin-left: 0.4rem;
}

.py-4-own {padding-top:2.5rem;padding-bottom:2.5rem}

@media (max-width: 991px) {

  /* Menübereich */
  .navbar-collapse { }

  /* Menü-Liste */
  .navbar-nav {
    margin-top: 0px;
  }

  /* einzelne Links */
  .navbar-nav .nav-link, .navbar .nav-link:focus {
    display: block;
    padding: 12px 0 !important;
    font-size: 1.1rem;
    font-weight: 500;
    color: #b0060b;
    position: relative;
	border:none;
  }

  /* Pfeil vor Link */
  .navbar-nav .nav-link::before {
    content: "›";
    margin-right: 10px;
    color: #b0060b;
    font-size: 1.2rem;
  }

  /* Trennlinie */
  .navbar-nav .nav-item {
	border-bottom: 1px solid #ccc;
  }

  /* Hover Effekt */
  .navbar-nav .nav-link:hover {
    color: #b0060b;
    text-decoration: none;
	background: none
  }
  
  /* aktiver Menüpunkt */
.navbar .nav-link.active {
  background-color: transparent;
  color: #b0060b;
  border-color: none;
}
  
  
}

/* ==========================================================================
   5. Header / Hero-Bereiche
   ========================================================================== */

header {
  position: relative;
  overflow: hidden;
}

header h1 {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

header .btn {
  padding: 0.75rem 1.5rem;
  font-size: clamp(1rem, 0.9vw, 1.125rem);
}

#home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.8)); 	
 /* background: linear-gradient(rgba(100, 0, 8, 0.4),rgba(100, 0, 8, 0.8));*/
  /*background: rgba(100, 0, 8, 0.8);  10% Transparenz */
  z-index: 1;
}

#home .container {
  z-index: 2;
}

/* ==========================================================================
   6. Sections
   ========================================================================== */


/* Beispiel für alternierende Hintergrundfarben */
section:nth-of-type(even) {
  background-color: rgba(255,239,209,1);
}

section#veranstaltungen {background-color: rgba(255,239,209,1);} 
section#foerderverein   {background-color: #fff;} 
section#aktuelles   	{background-color: rgba(101,166,163,0.2);} 
section#kontakt 		{background-color: rgba(255,239,209,0.5);} 
.galerie {background-color: rgba(255,239,209,0.5) !important;} 

img#lightboxImage {border-top-left-radius: 6px; border-top-right-radius: 6px}
.modal-footer {justify-content: center}

/* Split-Sections */
.split-text {
  max-width: 800px;
  margin-inline: auto; /* zentriert */
}

/* Randlose Split Sections */
section[id^="aktuelles"] {
  margin: 0 !important;
  padding: 0 !important;
}

section[id^="aktuelles"] .min-vh-75 {
  min-height: 75vh;
}

section[id^="aktuelles"] .min-vh-50 {
  min-height: 50vh;
}

section[id^="aktuelles"] .split-text {
  max-width: 700px;
  margin-inline: auto;
}

/* Randlose Split Sections */
section[id^="foerder-mitglied"] {
  margin: 0 !important;
  padding: 0 !important;
}

section[id^="foerder-mitglied"] .min-vh-75 {
  min-height: 75vh;
}

section[id^="foerder-mitglied"] .min-vh-50 {
  min-height: 50vh;
}

section[id^="foerder-mitglied"] .split-text {
  max-width: 700px;
  margin-inline: auto;
}

section[id^="foerder-mitglied"] .split-text, section[id^="aktuelles"] .split-text
{
padding: clamp(25px, 4vw, 60px)
}

.container {--bs-gutter-x: 3rem !important;}

.sec-pd-own {padding: var(--section-space) 0;}
.sec-pd-footer-own {padding: clamp(40px, 4vw, 60px) 0;}

.min-vh-50 {
  min-height: 50vh;
}

.min-vh-75 {
  min-height: 75vh;
}

/* Event Card */

.event-card{
  background:#ffffff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  margin-bottom: 40px	
}

/* Bild */

.event-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Inhalt */

.event-content{
  padding: clamp(26px, 2vw, 40px)
}

/* Meta Infos */

.event-meta{
  color:#b0060b;
  font-size: clamp(1rem, 0.9vw, 1.125rem);
}

.event-title{
  margin-bottom:15px;
}

.event-meta i {
  margin-right: 0.5rem;
}

.event-termin-kontakt { }
.event-termin-kontakt i {font-size:4rem}

/*.event-text{ }*/


/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */

footer {
  background-color: var(--color-bg-footer);
  color: #fff;
}

footer h5 {
  color: #fff;
  margin-bottom: 0.75rem;
}

footer p {text-wrap:balance}

footer a {
  color: #ccc;
}
footer a:hover {
  color: #fff
}
.border-top-white {border-top: 1px solid #fff}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.75rem;
}

.footer-nav li {
  margin-bottom: 0px; /* kleiner Feinschliff */
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 16px;
  font-size: clamp(1rem, 0.9vw, 1.125rem);	
}

.footer-nav a span {
  white-space: nowrap;
}

/* Alle bis auf die letzte Spalte */
.sec-pd-footer-own .row > [class*="col-"]:not(:last-child) {
  border-bottom: 1px solid #fff;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
}

/* Linie auf Desktop ausblenden */
@media (min-width: 768px) {
  .sec-pd-footer-own .row > [class*="col-"]:not(:last-child) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* Basis-Link */
.link-chevron {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

/* Chevron */
.link-chevron::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
}

/* Text separat behandeln */
.link-chevron span {
  text-decoration: none;
}

/* Hover: nur Text unterstreichen */
.link-chevron:hover span {
  color:#fff;
  text-decoration: underline;
}

/* Optional: sanfte Animation */
.link-chevron::before {
  transition: transform 0.2s ease;
}

.link-chevron:hover::before {
  transform: translateX(3px);
  color: #fff;	
}

/* ==========================================================================
   9. Utility-Klassen (eigene Helfer)
   ========================================================================== */

.text-accent {
  color: var(--color-accent) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
  color: #fff;
}

/* ==========================================================================
   10. Media Queries (Responsives Feintuning)
   ========================================================================== */

@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 0.5rem 0.75rem;
	padding-left:10px  
  }
	.navbar-collapse {padding-top:30px}
	.navbar-brand {margin-left:0}
	#datenschutz {padding-top: 160px;margin-top: -160px;}
}


/* ============================= */
/* Basis Bootstrap Button Fix   */
/* ============================= */

.btn {
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn:focus {
  box-shadow: none;
}


/* ============================= */
/* HERO BUTTON (Header / Slider)*/
/* ============================= */

.btn-hero {
  background-color: #b0060b;;
  color: #fff;
  border: none;
  padding: 16px 42px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  font-size: clamp(1rem, 0.9vw, 1.25rem);	
}

.btn-hero:hover {
  background-color: #640008;
  color: #fff;
  text-decoration: none !important		
}

.btn-hero:focus,
.btn-hero:active,
.btn-hero:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  color: #fff !important;              /* oder deine Wunschfarbe */
  background-color: #b0060b !important; /* deine Buttonfarbe */
}


/* ============================= */
/* STANDARD BUTTON (Seite)      */
/* ============================= */

.btn-main {
  background-color: transparent;
  color: #b0060b;
  border: 2px solid #b0060b;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: clamp(1rem, 0.9vw, 1.125rem);	
}

.btn-main:hover {
  background-color: #b0060b;
  border: 2px solid #b0060b;
  color: #fff;
  text-decoration: none !important	
}

.btn-main:focus,
.btn-main:active,
.btn-main:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  color: #b0060b !important;              /* oder deine Wunschfarbe */
  background-color: transparent !important; /* deine Buttonfarbe */
  border-color: #b0060b !important;	
}


.top-bar {background-color: rgba(101,166,163,1) !important; color:#fff !important }
.top-bar .text-muted {color:#fff !important; font-size: 0.95rem; }

.top-bar .col-12 {
  margin-bottom: 3px;
}

@media (min-width: 768px) {
  .top-bar .col-12 {
    margin-bottom: 0;
  }
}

/* Toggler Reset */

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* Burger Container */

.burger {
  width: 30px;
  height: 22px;
  position: relative;
  display: block;	
}


/* Linien */

.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  transition: all 0.35s ease;
}


/* obere Linie */

.burger span:nth-child(1) {
  top: 6px;
}


/* untere Linie */

.burger span:nth-child(2) {
  bottom: 6px;
}


/* Zustand wenn Menü offen */

.navbar-toggler {margin-right: 20px}

.navbar-toggler:not(.collapsed) .burger span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.navbar-toggler:not(.collapsed) .burger span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 10px;
}

#home .container {
  margin-top: clamp(-180px, -8vw, -200px) !important;
}

/* Portfolio Item */

.portfolio-item{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:.5rem;
}

/* Bild */

.portfolio-item img{
  width:100%;
  transition:
    transform .6s cubic-bezier(.2,.6,.2,1),
    filter .4s ease;
  will-change:transform;
}

/* Overlay */

.portfolio-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .35s ease;
  border-radius:inherit;
}

.txt-balance {text-wrap:balance}

/* Icon */

.portfolio-icon{
  font-size:2.2rem;
  color:#fff;
  transform:scale(.6) rotate(-10deg);
  transition:transform .35s cubic-bezier(.2,.6,.2,1);
}

/* Hover nur auf Geräten mit Maus */

@media (hover:hover){

  .portfolio-item:hover img{
    transform:scale(1.08);
    filter:brightness(.7);
  }

  .portfolio-item:hover .portfolio-overlay{
    opacity:1;
  }

  .portfolio-item:hover .portfolio-icon{
    transform:scale(1) rotate(0deg);
  }

}

.badge-foerderverein, .badge-bezirksamt  {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-top: 0.35em;
  padding-bottom: 0.35em;  
  /*font-size: clamp(1rem, 0.9vw, 1.125rem);*/
}

.badge-foerderverein {
  background-color: #b0060b;
}

.badge-bezirksamt {
  background-color: #65A6A3;
  /*font-size: clamp(1rem, 0.9vw, 1.125rem);*/
}

@media (min-width: 768px) {
 .badge-foerderverein, .badge-bezirksamt {transform: translate(-3px, -3px); /* x, y */}
}

.sec-border-top {border-top: 1px solid #ccc}

@keyframes bounceInUp {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.back-to-top {
  background-color: #b0060b;   /* deine Farbe */
  color: #fff;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  font-size:1.4rem !important;
  border:none;
  aspect-ratio: 1 / 1;
  width: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Startzustand (unsichtbar) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  /* Animation */
  transition: all 0.3s ease;
}

.back-to-top i {
  line-height: 1;
}

/* Hover */
.back-to-top:hover {
  background-color: #640008;   /* dunkler */
  color: #fff;
}

/* Hover */
.back-to-top:active {
  background-color: #b0060b; 
  color: #fff;
}

.back-to-top:focus,
.back-to-top:focus-visible {
  outline: none;
  background-color: #b0060b;
}

/* Sichtbar */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: bounceInUp 0.5s ease;
}

a.tel-link,
a.tel-link:hover,
a.tel-link:focus,
a.tel-link:active {
  color: inherit !important;
  text-decoration: none !important;
  background-color: transparent !important;
  cursor: default;
}

a.txt-white, a.txt-white:hover, a.txt-white:active, a.txt-white:focus {color:#fff !important}
a.txt-black, a.txt-black:hover, a.txt-black:active, a.txt-black:focus {color:#000 !important}

ul.bullet-body {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.bullet-body li {
  display: flex;
  align-items: flex-start;
}

ul.bullet-body li::before {
  content: "•";       /* Bullet selbst definieren */
  margin-right: 0.5em; /* Abstand zwischen Bullet und Text */
}

/* Grundform */
.kachel {
  border-radius: 12px;
  overflow: hidden
}

/* Desktop: nur äußere Ecken */
@media (min-width: 768px) {
  .kachel-links {
    border-radius: 12px 0 0 12px;
  }

  .kachel-rechts {
    border-radius: 0 12px 12px 0;
  }
}

#lightboxImage {
  touch-action: pan-y;
  transition: opacity 0.25s ease;
}
