/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Arial",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Tahoma",  sans-serif;
  --nav-font: "Verdana",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #62662a; 
  --heading-color: #314526; 
  --accent-color: #565920;
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #62662a;  
  --nav-hover-color: #565920; 
  --nav-mobile-background-color: #fef2d2; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #62662a; 
  --nav-dropdown-hover-color: #282307;
}

.light-background {
  --background-color: #ffffff;
  --default-color: #62662a;
  --heading-color: #314526;
  --accent-color: #565920;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #565920;
  --default-color: rgba(240, 219, 172, 0.9);
  --heading-color: #f4d8a1;
  --accent-color: #f3d294;
  --surface-color: #7a7f2d;
  --contrast-color: #ffffff;
}
:root {
  --gs-border: rgba(189, 178, 153, 0.6);
  --gs-contrast: #F3D599;
  --gs-link:#192e05;
  --gs-link-blau:#0000ff;
 
}

:root {
  --default-size-small: 0.8rem;
  --default-font-size: 1.2rem;
  --default-size-big: 1.1rem;
  --default-line-height: 1.8rem;
  --default-font-weight: 400;
  --line-height-heading-h1: 1.2em;
  --line-height-heading: 54px;
  --line-height-heading-small: 1.35em;
  --h1-font-size: 1.8rem;
  --h2-font-size: 1.6rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.3rem;
  --h5-font-size: 1.1rem;
  --h6-font-size: 1.1rem
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: var(--default-font-size);
}

a {
  color: var(--default-color);
  font-size: var(--default-font-size);
  text-decoration: underline;
  font-weight: 500;
  outline: 0 solid transparent;
  transition: 0.3s;
}

a:hover {
  color: var(--default-color);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  margin-bottom: 0;
}

hr {
  border-top: 1px solid #B1A993;
}

.underline {
  text-decoration: underline;
}

.strong {
  font-weight: bold;
}

.btn-xl {
  max-width: 200px;
  min-width: 100px;
}

.btn-get-started {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  padding: 10px;
  font-weight: 500;
  transition: 0.3s;
  place-items: center;
}

.btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--default-color);
}

/* intern*/
.intern h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.intern p {
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.6rem;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}

/* sidebar-info */
.sidebar-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 1199px) {
  .sidebar-info {
    padding: 10px;
  }

  .sidebar-info h4 {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 3px;
  }
}

.sidebar-info .services-list {
  margin-bottom: 25px;
  background-color: var(--surface-color);
}

.sidebar-info .services-list ul {
  list-style: none;
  padding: 0;
  font-size: var(--default-font-size);
}

.sidebar-info .services-list ul li {
  color: var(--contrast-color);
  background-color: var(--surface-color);
}

.sidebar-info .services-list ul li a {
  color: var(--default-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 10px 10px;
  margin-top: 5px;
  transition: 0.3s;
}

.sidebar-info .services-list li:hover>a,
.sidebar-info .services-list .active a,
.sidebar-info .services-list .active:focus {
  color: var(--contrast-color);
  background-color: var(--default-color);
}

@media (max-width: 1199px) {
  .sidebar-info .services-list {
    margin-bottom: 0px;
  }

  .sidebar-info .services-list ul {
    list-style: none;
    padding: 2;
    font-size: var(--default-font-size);
  }

  .sidebar-info .services-list ul li {
    color: var(--contrast-color);
  }

  .sidebar-info .services-list ul li a {
    color: var(--default-color);
    background-color: var(--contrast-color);
    align-items: center;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
    padding: 3px 5px;
    margin-top: 0px;
    transition: 0.3s;
  }

  .sidebar-info .services-list li:hover>a,
  .sidebar-info .services-list .active a,
  .sidebar-info .services-list .active:focus {
    color: var(--contrast-color);
    background-color: var(--default-color);
  }
}

/* rueckblick-detail */
.rueckblick-detail img {
  max-height: 400px;
  margin-bottom: 10px;
}

.rueckblick-detail h3 {
  font-size: 1.3rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 400;
}

.rueckblick-detail h4 {
  font-size: 1.3rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
}

.rueckblick-detail .about-content .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.75rem 2.2rem;
  border-radius: 2rem;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color) 30%, transparent 85%);
  transition: background 0.3s, box-shadow 0.3s;
}

.rueckblick-detail .about-content .btn-primary:hover,
.rueckblick-detail .about-content .btn-primary:focus {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent-color), #212529 30%);
  color: var(--contrast-color);
}

.rueckblick-detail .about-card {
  background: var(--surface-color);
  border-radius: 1.25rem;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 20px 0 color-mix(in srgb, var(--accent-color) 9%, transparent 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.rueckblick-detail .about-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin-bottom: 0;
}

.rueckblick-detail .about-card:hover,
.rueckblick-detail .about-card:focus-within {
  box-shadow: 0 8px 28px 0 color-mix(in srgb, var(--accent-color) 23%, transparent 80%);
  transform: translateY(-5px) scale(1.03);
}

.rueckblick-detail .about-card:hover .icon-wrap,
.rueckblick-detail .about-card:focus-within .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .rueckblick-detail .about-content h2 {
    font-size: 1.7rem;
  }

  .rueckblick-detail .about-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .rueckblick-detail .about-content h2 {
    font-size: 1.6rem;
  }

  .rueckblick-detail .about-card {
    padding: 1rem;
  }
}

.btn-xl {
  max-width: 200px;
  min-width: 100px;
}

.side-bar span {
  display: none;
}

/* speziell für Uli Ludwig */
.bold {
  font-weight: bold;
}

.red {
  color: #FD0000 !important;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: var(--default-size-small);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar {
  height: 130px;
  padding: 0;
  transition: all 0.5s;
  background-image: -webkit-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(243, 213, 153) 100%);
  background-image: -moz-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(243, 213, 153) 100%);
  background-image: -o-linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(243, 213, 153) 100%);
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(243, 213, 153) 100%);
}

@media (max-width: 1199px) {
  .header .topbar {
    display: none !important;
  }
}

.header .branding {
  background-image: -webkit-linear-gradient(270deg, rgb(243, 213, 153) 0%, rgb(254, 242, 210) 100%);
  background-image: -moz-linear-gradient(270deg, rgb(243, 213, 153) 0%, rgb(254, 242, 210) 100%);
  background-image: -o-linear-gradient(270deg, rgb(243, 213, 153) 0%, rgb(254, 242, 210) 100%);
  background-image: linear-gradient(180deg, rgb(243, 213, 153) 0%, rgb(254, 242, 210) 100%);
  margin-bottom: 0px;
  border-top: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
  min-height: 30px;
}

.header .branding .logo-mobil img {
  display: none;
}

@media (max-width: 1199px) {
  .header .branding .logo-mobil img {
    display: block;
    max-height: 70px;
    justify-content: start;
    text-align: left;
  }
}

.header .nav-wrap {
  margin-bottom: 0px;
  min-height: 30px;
  display: flex;
  justify-content: center;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu .active a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 30px;
    margin-left: 2px;
    font-size: var(--default-font-size);
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: var(--default-font-size);
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    position: fixed;
    top: 15px;
    right: 12px;
    font-size: 42px;
    line-height: 0;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
  }

  .navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    transition: 0.3s;
    width: 300px;
    overflow: hidden;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: var(--default-size-big);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    right: 310px;
    font-size: 36px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--nav-mobile-background-color);
    transition: 0.3s;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #fef2d2;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: var(--default-font-size);
  position: relative;
}

.footer .logo-kindertafel img {
  max-height: 300px;
}

.footer .footer-top {
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo-titel span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: var(--default-font-size);
  font-family: var(--heading-font);
}

@media (max-width: 991px) {
  .footer .footer-about .social-links {
    text-align: center;
    justify-content: center;
    font-size: 20px;
  }
}

@media (max-width: 991px) {

  .footer .footer-about,
  .footer .footer .social-links {
    text-align: center;
    justify-content: center;
  }
}

.footer .logo img {
  max-height: 250px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: var(--default-size-big);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-links {
    margin-top: 80px;
  }
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .diclaimer {
  background-color: var(--gs-contrast);
}

.footer .credits {
  margin-top: 6px;
  font-size: var(--default-size-small);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  margin-top: 190px;
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: var(--default-font-size);
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

@media screen and (max-width: 1199px) {
  .page-title {
    margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  line-height: 1.8rem;
}

/*--------------------------------------------------------------
# Start Section
--------------------------------------------------------------*/
.start {
  position: relative;
  padding: 20px 0 20px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .start {
    padding: 20px 0 20px;
  }
}

.start h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.start h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .start h1 {
    font-size: 2rem;
  }
}

.start .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.start .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.start .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .start .primary-btn {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Aktuell Content Section
--------------------------------------------------------------*/
.aktuell-content img {
  max-height: 400px;
}

.aktuell-content .about-content h3 {
  font-size: 1.3rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
}

.aktuell-content .about-content .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.75rem 2.2rem;
  border-radius: 2rem;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color) 30%, transparent 85%);
  transition: background 0.3s, box-shadow 0.3s;
}

.aktuell-content .about-content .btn-primary:hover,
.aktuell-content .about-content .btn-primary:focus {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent-color), #212529 30%);
  color: var(--contrast-color);
}

.aktuell-content .about-card {
  background: var(--surface-color);
  border-radius: 1.25rem;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 20px 0 color-mix(in srgb, var(--accent-color) 9%, transparent 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.aktuell-content .about-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin-bottom: 0;
}

.aktuell-content .about-card:hover,
.aktuell-content .about-card:focus-within {
  box-shadow: 0 8px 28px 0 color-mix(in srgb, var(--accent-color) 23%, transparent 80%);
  transform: translateY(-5px) scale(1.03);
}

.aktuell-content .about-card:hover .icon-wrap,
.aktuell-content .about-card:focus-within .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .aktuell-content .about-content h2 {
    font-size: 1.7rem;
  }

  .aktuell-content .about-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .aktuell-content .about-content h2 {
    font-size: 1.6rem;
  }

  .aktuell-content .about-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Konzept Content Section
--------------------------------------------------------------*/
.konzept-content .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.konzept-content .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.konzept-content .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.konzept-content .faq-card p {
  margin-bottom: 25px;
  font-size: var(--default-font-size);
  line-height: 24px;
  color: var(--accent-color);
}

.konzept-content .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: var(--default-font-size);
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.konzept-content .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.konzept-content .faq-list {
  padding: 0;
}

.konzept-content .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.konzept-content .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.konzept-content .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.konzept-content .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.konzept-content .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: var(--default-font-size);
  line-height: 24px;
  overflow: hidden;
}

.konzept-content .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.konzept-content .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.konzept-content .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.konzept-content .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .konzept-content .faq-list .faq-item {
    padding: 20px;
  }

  .konzept-content .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .konzept-content .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Personen Master Section
--------------------------------------------------------------*/
.personen-master {
  font-size: var(--default-font-size);
}

/*--------------------------------------------------------------
# Personen Forderer Section
--------------------------------------------------------------*/
.personen-forderer {
  font-size: var(--default-font-size);
}

.personen-forderer h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.personen-forderer p {
  color: var(--accent-color);
  margin-bottom: 0;
  line-height: 1.8rem;
}

.personen-forderer .catalog-item {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.personen-forderer .catalog-item img {
  transition: 0.3s;
  max-height: 300px;
}

.personen-forderer .catalog-item .catalog-info {
  padding: 25px 20px;
  background-color: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.personen-forderer .catalog-item .catalog-info h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.personen-forderer .catalog-item .catalog-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.personen-forderer .catalog-item .catalog-info h4 a:hover {
  color: var(--accent-color);
}

.personen-forderer .catalog-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Personen Vorstand Section
--------------------------------------------------------------*/
.personen-vorstand {
  font-size: var(--default-font-size);
}

.personen-vorstand .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.personen-vorstand .content ul {
  list-style: none;
  padding: 0;
}

.personen-vorstand .content ul li {
  display: flex;
  align-items: center;
}

.personen-vorstand .content ul strong {
  margin-right: 10px;
}

.personen-vorstand .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Personen Schirmherr Section
--------------------------------------------------------------*/
.personen-schirmherr {
  font-size: var(--default-font-size);
}

.personen-schirmherr .general-content h2 {
  font-size: 1.8rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
}

@media (max-width: 992px) {
  .personen-schirmherr .general-content h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .personen-schirmherr .general-content h2 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Person Detail Section
--------------------------------------------------------------*/
.person-detail .about-image {
  position: relative;
}

.person-detail .about-image img {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.person-detail .about-content {
  text-align: center;
}

@media (max-width: 991.98px) {
  .person-detail .about-content {
    padding-left: 0;
  }
}

.person-detail .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.person-detail .about-content .lead {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.person-detail .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.person-detail .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.person-detail .personal-info .info-item .label {
  font-size: var(--default-font-size);
  color: var(--accent-color);
}

.person-detail .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.person-detail .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.person-detail .signature .signature-info p {
  font-size: var(--default-font-size);
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Gaestebuch Section
--------------------------------------------------------------*/
.gaestebuch .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.gaestebuch .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.gaestebuch .team-member .member-img {
  flex: 0 0 160px;
  overflow: hidden;
}

.gaestebuch .team-member .member-img img {
  width: 160px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.gaestebuch .team-member .member-info {
  padding-top: 3px;
  padding-left: 25px;
  padding-bottom: 3px;
  text-align: left;
}

.gaestebuch .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 767px) {
  .gaestebuch .team-member .member-info h4 {
    text-align: center;
  }
}

.gaestebuch .team-member .member-info span {
  font-size: var(--default-font-size);
  font-weight: 400;
  color: var(--accent-color);
  display: block;
}

.gaestebuch .team-member .member-info p {
  font-size: var(--default-font-size);
  color: var(--accent-color);
}

.gaestebuch .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.gaestebuch .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.gaestebuch .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .gaestebuch .team-member {
    flex-direction: column;
  }

  .gaestebuch .team-member .member-img {
    flex: auto;
  }

  .gaestebuch .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .gaestebuch .team-member .member-info {
    text-align: center;
  }

  .gaestebuch .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Patenschaft Section
--------------------------------------------------------------*/
.patenschaft .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.patenschaft .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.patenschaft .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/svg/wave.svg") no-repeat center bottom;
  mask: url("../img/svg/wave.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.patenschaft .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.patenschaft .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.patenschaft .team-member .member-info span {
  display: block;
  font-size: var(--default-font-size);
  font-weight: 400;
  color: var(var(--accent-color));
}

.patenschaft .team-member .member-info p {
  font-size: var(--default-font-size);
  padding-top: 15px;
  line-height: 26px;
  color: var(var(--default-color));
}

.patenschaft .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Service Master Section
--------------------------------------------------------------*/
.service-master {
  font-size: var(--default-font-size);
}

.service-master h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.service-master p {
  color: var(--accent-color);
  margin-bottom: 0;
  line-height: 1.8rem;
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history {
  font-size: var(--default-font-size);
}

.history .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.history .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.history .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.history .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.history .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.history .resume-wrapper .timeline {
  position: relative;
}

.history .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.history .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.history .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.history .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.history .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.history .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: var(--default-font-size);
}

.history .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.history .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.history .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.history .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.history .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.history .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .history .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .history .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .history .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .history .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .history .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .history .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Stadtteil Section
--------------------------------------------------------------*/
.stadtteil img {
  max-height: 400px;
}

.stadtteil a {
  text-decoration: none;
  transition: 0.3s;
}

.stadtteil .about-card {
  background: var(--surface-color);
  border-radius: 1.25rem;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 20px 0 color-mix(in srgb, var(--accent-color) 9%, transparent 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.stadtteil .about-card p {
  color: var(--accent-color);
  font-size: var(--default-font-size);
}

.stadtteil .about-card:hover,
.stadtteil .about-card:focus-within {
  box-shadow: 0 8px 28px 0 color-mix(in srgb, var(--accent-color) 23%, transparent 80%);
  transform: translateY(-5px) scale(1.03);
}

.stadtteil .about-card:hover .icon-wrap,
.stadtteil .about-card:focus-within .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .stadtteil .about-content h2 {
    font-size: 1.7rem;
  }

  .stadtteil .about-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .stadtteil .about-content h2 {
    font-size: 1.6rem;
  }

  .stadtteil .about-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Intern Section
--------------------------------------------------------------*/
.intern {
  font-size: var(--default-font-size);
}

.intern h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.intern p {
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.6rem;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Antrag Section
--------------------------------------------------------------*/
.antrag .section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.antrag .about-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.antrag .about-description {
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.3rem;
}

.antrag .about-description p {
  line-height: 1.5rem;
}

.antrag .features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.antrag .features .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-right: 1rem;
}

.antrag .features .feature-item .feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.antrag .features .feature-item .feature-content p {
  font-size: var(--default-font-size);
  margin-bottom: 0;
  line-height: 1.5rem;
}

@media (max-width: 767.98px) {
  .antrag .section-title {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Satzung Section
--------------------------------------------------------------*/
.satzung .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.satzung .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.satzung .tos-content .content-section a {
  text-decoration: underline;
}

.satzung .tos-content .content-section h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.satzung .tos-content .content-section p {
  color: var(--accent-color);
  line-height: 1.9;
  margin-bottom: 0;
}

.satzung .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.satzung .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.satzung .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.satzung .tos-content .content-section .info-box p {
  margin: 0;
  font-size: var(--default-font-size);
}

.satzung .tos-content .content-section .box {
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.satzung .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 10px 0 10px 15px;
  margin-left: 0px;
  line-height: 1.6rem;
}

.satzung .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--accent-color);
}

.satzung .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.satzung .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Buro Section
--------------------------------------------------------------*/
.buro .features-item+.features-item {
  margin-top: 60px;
}

.buro .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  padding: 30px;
  border-radius: 10px;
}

.buro .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.buro .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.buro .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.buro .features-item ul {
  list-style: none;
  padding: 0;
}

.buro .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.buro .features-item ul li:last-child {
  padding-bottom: 0;
}

.buro .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.buro .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Kooperation Section
--------------------------------------------------------------*/
.kooperation .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.kooperation .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.kooperation .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.kooperation .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .kooperation .isotope-filters li {
    margin-bottom: 5px;
  }
}

.kooperation .gallery-item {
  margin-bottom: 30px;
}

.kooperation .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kooperation .gallery-img {
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Trauerseite Section
--------------------------------------------------------------*/
.trauerseite img {
  max-height: 300px;
}

.trauerseite .about-card {
  background: var(--surface-color);
  border-radius: 1.25rem;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 20px 0 color-mix(in srgb, var(--accent-color) 9%, transparent 95%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.trauerseite .about-card:hover,
.trauerseite .about-card:focus-within {
  box-shadow: 0 8px 28px 0 color-mix(in srgb, var(--accent-color) 23%, transparent 80%);
  transform: translateY(-5px) scale(1.03);
}

.trauerseite .about-card:hover .icon-wrap,
.trauerseite .about-card:focus-within .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .trauerseite .about-card .about-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .trauerseite .about-card .about-card {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact .info-card p {
  margin: 0;
  color: var(--accent-color);
  font-size: var(--default-font-size);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Rueckblick Detail Section
--------------------------------------------------------------*/
.rueckblick-detail {
  padding: 10px 0 40px 0;
}