/* Fonts */
:root {
    --default-font: "Roboto",  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: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e03a63; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --footer-color: #2c2c2c; /* footer color forr text and hover */
    --footerbtn-color: #4b4b4b; /* footer color for btn hover  */
}

/* Navbar Colors */
:root {
    --nav-color: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #e03a5c; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e03a5c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets */

.light-background {
    --background-color: #cacaca;
    --surface-color: #cacaca;
}

.dark-background {
    --background-color: #e03a5c;
    --background-footer-color: #181818;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #313131;
    --contrast-color: #ffffff;
}

html, body {
    overflow-x: hidden; /* Verhindert horizontalen Scroll global */
    max-width: 100%;
}

/* Loader Styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Or any background color */
    z-index: 9999; /* Make sure it's on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid var(--accent-color); /* Your accent color for the top part */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide Loader */
#loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Upload Sytle */
.modal-button button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.modal-button button:hover {
  background-color: #d81b60;
}

.loading, .sent-message, .error-message {
  display: none;
}

.loading {
  text-align: center;
  padding: 20px 0;
}

.sent-message {
  text-align: center;
  color: #28a745;
  padding: 20px 0;
}

.error-message {
  color: #dc3545;
  text-align: center;
  padding: 10px 0;
}

#uploadContainer {
  margin-top: 10px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-radius: 0;
  margin-bottom: 8px;
}

.file-info {
  display: flex;
  align-items: center;
}

.file-name {
  margin-left: 3px;
  font-size: 0.700rem;
  width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 360px) and (max-width: 474px) {
  .file-name {
    margin-left: 3px;
    font-size: 0.400rem;
    width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .progress {
    width: 90px;
    height: 8px;
    margin-right: 8px;
    border-radius: 0;
  }
}

@media screen and (min-width: 300px) and (max-width: 359px) {
  .file-name {
    margin-left: 3px;
    font-size: 0.300rem;
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .progress {
    width: 50px;
    height: 8px;
    margin-right: 8px;
    border-radius: 0;
  }
}

.file-progress {
  display: flex;
  align-items: center;
}

.progress {
  width: 110px;
  height: 8px;
  margin-right: 8px;
  border-radius: 0;
}

.progress-bar {
  background-color: var(--accent-color);
}

.remove-file {
  background: none;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
  padding: 0;
}

.remove-file:hover {
  color: #bd2130;
}

.spinner-container {
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.spinner-border {
  color: #e91e63;
  margin-top: 16px;
}

/* Make progress bars square */
.progress-bar {
  border-radius: 0;
}

/* Center the loading spinner */
.loading-text {
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Success message styling */
.success-message {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Affiliate Banners */
.afiliate_banner {
  padding: 24px 0;
}

.afiliate_banner .banner-slot {
  max-width: 900px;
  min-height: 250px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.afiliate_banner img,
.afiliate_banner iframe {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

@media (max-width: 920px) {
  .afiliate_banner .banner-slot {
    min-height: unset;
  }
}

/* Make all form inputs square */
.form-control {
  border-radius: 0;
}

/* Make progress bars square */
.progress-bar {
  border-radius: 0;
}

/* Google Maps */
#map-container {
  position: relative;
}

#map-container h2 {
  border-top: 1px solid #dddddd;
  padding-top: 30px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.35rem;
}

#google-map {
  transition: filter 0.3s ease;
}

#map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none; /* Erlaubt Interaktionen mit der Karte */
}

#map-container:not(:hover) #google-map {
  filter: grayscale(100%);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Global Site width */

.index-page {
  width: 100%;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgba(255, 255, 255, 1.0);
  background-size: 100% 100%;
  background-image: linear-gradient(90deg, #FFFFFFFF 30%, #e0e0e0 70%);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

input.btn-info,
input.btn-info:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: auto 0;
    border:none;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

input.btn-info:hover,
input.btn-info:focus:hover  {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

    input.btn-info,
    input.btn-info:focus {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .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: 18px 15px;
    font-size: 16px;
    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:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    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;
    font-size: 15px;
    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(--nav-dropdown-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;
  }
}

.btn {
  display: flex;
  justify-content: flex-end;
  width: 100%; /* Optional: Lässt den Container die volle Breite einnehmen */
}

.btn a {
  /* Stil für den Link innerhalb des Buttons */
  display: inline-block; /* Oder block, je nach Bedarf */
}


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* This is new */
/* Banner Container right */
.container-right-wrapper {
    position: relative;
}

/* Responsive banner strip */
.container-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.container-right .banner-right {
    display: flex;
    justify-content: center;
}

.container-right .banner-right img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

@media (max-width: 1557px) {
    .container-right-wrapper {
        display: flex;
        flex-direction: column;
    }

    .container-right {
        order: 99;
        position: static;
        margin-top: 2rem;
    }
}

@media (min-width: 1558px) {
    .container-right-wrapper {
        display: block;
    }

    .container-right {
        position: fixed;
        top: 564px;
        right: 0;
        width: auto;
        max-width: 25vw;
        flex-direction: column;
        align-items: flex-end;
        padding: 28px 0 0 0;
        margin: 0;
        gap: 0;
        z-index: 4;
        /* Sanfter Übergang */
        transition: none; /* Entferne falls vorhanden */
    }
    .container-right .banner-right {
        justify-content: flex-end;
    }

    .container-right .banner-right img {
        width: 135px;
        margin-top: 0.5rem;
        padding-right: 10px;
    }
}

@media (min-width: 1558px) and (max-width: 1700px) {
    .container-right .banner-right img {
        width: 125px;
    }
}

@media (min-width: 1558px) and (max-width: 1600px) {
    .container-right .banner-right img {
        width: 110px;
    }
}
/* end of new */

/* Container für die soziale Icons-Liste */
.social-icons-container {
  background-color: var(--accent-color, #007bff);
  padding: 15px 20px;
  border-radius: 0;
  display: block;
  margin-bottom: 20px;
  width: 100%; /* Nutzt die volle verfügbare Breite */
}

.social-icons-list {
  display: flex;
  list-style: none;
  padding: 8px;
  margin: 0;
  justify-content: space-evenly; /* Gleichmäßige Abstände zwischen den Icons */
  flex-wrap: nowrap; /* Verhindert Umbruch */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.05);
  gap: 10px; /* Konsistenter Abstand zwischen den Elementen */
}

.social-icons-list li {
  margin: 0;
  flex: 0 1 auto; /* Flex-grow: 0, flex-shrink: 1, flex-basis: auto */
  min-width: 0; /* Verhindert Überlauf */
  text-align: center; /* Zentriert den Inhalt */
  display: flex;
  justify-content: center;
}

.social-icons-list a {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}

.social-icons-list .bi {
  color: white;
}

.social-icons-list a:hover {
  transform: translateY(-3px);
  color: rgba(255, 255, 255, 0.8);
}

/* Spezifischere Icons für bessere Erkennbarkeit */
.social-icons-list .bi-instagram,
.social-icons-list .bi-whatsapp,
.social-icons-list .bi-telegram {
  font-size: clamp(20px, 5vw, 35px); /* Responsive Größe: min 20px, max 35px */
  display: flex;
}

.social-icons-list .tiktok,
.social-icons-list .onlyfans,
.social-icons-list .fansly {
  filter: brightness(0) invert(1);
  width: clamp(25px, 5vw, 40px); /* Responsive Größe */
  height: clamp(25px, 5vw, 40px); /* Responsive Größe */
  vertical-align: middle;
  display: flex;
}

/* Für mittlere Bildschirme (Tablets und kleine Laptops) */
@media (min-width: 991px) and (max-width: 1199px) {
  .social-icons-list {
    gap: 8px; /* Angepasster Abstand für mittlere Bildschirme */
  }

  .social-icons-list .bi-instagram,
  .social-icons-list .bi-whatsapp,
  .social-icons-list .bi-telegram {
    font-size: 25px; /* Kleinere Schriftgröße für mittlere Bildschirme */
  }

  .social-icons-list .tiktok,
  .social-icons-list .onlyfans,
  .social-icons-list .fansly {
    width: 25px;
    height: 25px;
  }
}

/* Für sehr kleine Bildschirme */
@media (max-width: 350px) {
  .social-icons-list {
    gap: 5px; /* Geringerer Abstand bei kleinen Bildschirmen */
  }

  .social-icons-list .bi-instagram,
  .social-icons-list .bi-whatsapp,
  .social-icons-list .bi-telegram {
    font-size: 20px; /* Minimalgröße auf sehr kleinen Bildschirmen */
  }

  .social-icons-list .tiktok,
  .social-icons-list .onlyfans,
  .social-icons-list .fansly {
    width: 25px;
    height: 25px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-footer-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
    z-index: 5;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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: 16px;
  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);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--footer-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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(--footerbtn-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 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 5px 0;
  margin: 0;
  font-size: 14px;
  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 50%);
}

#formContainer select {
  color: #999;
  font-size: 0.875rem;
  font-family: var(--body-font);
  appearance: none;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 100px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 40px;
  top: 40px;
  left: 0;
  right: 0;
  transform: skewY(-2deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 7px;
  padding-bottom: 7px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 145px;
  height: 2px;
  background: var(--footer-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* sreach */
/* Spezifischer Selektor für die Suchleiste */
.row.g-2.justify-content-center.mt-3 .form-select,
.row.g-2.justify-content-center.mt-3 .form-control {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  color: #999;
  font-size: 0.875rem;
  font-family: var(--body-font);
  transition: border-color 0.3s ease;
  height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 33px;
}

.row.g-2.justify-content-center.mt-3 .form-select:focus,
.row.g-2.justify-content-center.mt-3 .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  color: #999;
}

.row.g-2.justify-content-center.mt-3 .form-select option {
  color: #999;
}

/* Stil für den Pfeil bei Select-Elementen */
.row.g-2.justify-content-center.mt-3 .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 12px 9px;
  padding-right: 1.5rem;
  border-radius: 0;
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
}

/* Container-Cropper Styles
--------------------------------------------------------------*/
.container-cropper {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    width: 80%; /* Begrenzte Breite für bessere Lesbarkeit */
    max-width: 1200px; /* Maximale Breite, passt sich an verschiedene Bildschirmgrößen an */
    margin: 0 auto; /* Horizontale Zentrierung durch auto-Ränder */
    text-align: center; /* Text linksbündig ausrichten */
}

/* Row im Container-Cropper */
.container-cropper .row {
    width: 100%; /* Volle Breite innerhalb des Containers */
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch bei kleineren Bildschirmen */
}

/* Cropper-Container im Container-Cropper */
.container-cropper .cropper-container {
    width: 100% !important; /* Volle Breite mit !important um andere Stile zu überschreiben */
    margin-bottom: 20px;
}

/* Responsive Anpassungen für Row */
@media (max-width: 991px) {
    .container-cropper .row {
        flex-direction: column; /* Auf kleineren Bildschirmen untereinander anordnen */
    }

    .container-cropper .col-md-9 {
        width: 100%; /* Spalten auf volle Breite setzen */
        padding-left: 0;
        padding-right: 0;
    }
}

/* Button-Gruppe präziser definieren und abgrenzen */
.container-cropper .btn-group-crop {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin: 20px 0 !important;
    width: auto !important; /* Nur so breit wie nötig */
    max-width: fit-content !important; /* Maximale Breite auf den Inhalt beschränken */
}

/* Buttons sehr spezifisch definieren */
.container-cropper .btn-group-crop .btn-success,
.container-cropper .btn-group-crop .btn-danger {
    position: relative !important;
    width: 60px !important;
    height: auto !important;
    padding: 6px 0 !important;
    text-align: center !important;
    font-size: 12px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    vertical-align: middle !important;
    flex: none !important; /* Verhindert Flex-Wachstum */
    min-width: 60px !important; /* Minimale Breite erzwingen */
    max-width: 60px !important; /* Maximale Breite erzwingen */
}

/* Spezifische Stile für den Success-Button */
.container-cropper .btn-group-crop .btn-success {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    border-radius: 0 !important;
    margin-right: 7px !important;
}

/* Spezifische Stile für den Danger-Button */
.container-cropper .btn-group-crop .btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    border-radius: 0 !important;
}

.container-cropper .btn-success:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.container-cropper .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 0;
}

.container-cropper .btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}


/* Banner */
.banner-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px; /* Feste Höhe von 350px */
}

.banner {
  display: flex; /* Flexbox für horizontale Anordnung */
  height: 100%;
  pointer-events: none; /* Verhindert Interaktionen mit den Bildern */
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dunkles Overlay mit 30% Deckkraft */
  z-index: 1;
}

.banner img {
  flex: 1; /* Jedes Bild nimmt den gleichen Platz ein */
  object-fit: contain; /* Füllt den Bereich aus, ohne das Seitenverhältnis zu ändern */
  display: block;
  width: 100%;
  height: 100%;
  max-width: none; /* Entfernt die maximale Breite */
  max-height: none; /* Entfernt die maximale Höhe */
  user-select: none; /* Verhindert die Auswahl des Bildes */
  -webkit-user-drag: none; /* Verhindert das Ziehen des Bildes in Webkit-Browsern */
}

.banner-container {
  position: relative;
}


.two-column-grid {
  display: flex; /* Aktiviert Flexbox für die horizontale Anordnung */
}

.two-column-grid .image-column {
  width: 20%; /* Nimmt 20% der Containerbreite ein */
}

.two-column-grid .text-column {
  width: 80%; /* Nimmt 80% der Containerbreite ein */
  padding-left: 15px; /* Fügt Abstand zwischen Bild und Text hinzu */
}

.two-column-grid .image-column .banner-overlay img.profile-image {
  border: 5px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 80%; /* Anpassung der Bildbreite, um den Container auszufüllen */
  height: auto; /* Automatische Anpassung der Höhe */
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-top: 0;
}

/* Media Query für kleine Bildschirme (ab 530px) */
@media (max-width: 530px) {
  .two-column-grid {
    display: block; /* Ändert Flexbox zu Block, um die Spalten untereinander anzuordnen */
  }

  .two-column-grid .image-column {
    display: none; /* Blendet den Bildbereich aus */
  }

  .two-column-grid .text-column {
    width: 100%; /* Der Textbereich füllt den gesamten Container aus */
    padding-left: 0; /* Entfernt den linken Abstand */
  }
}

.striped-list {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-gap: 10px;
  display: grid;
  text-align: center;
}

.striped-list p {
  position: relative;
  font-size: 0.700rem !important;
  text-align: left;
  left: 5px;
  top: 25%;
  width: 50%;
}

.striped-list span {
  font-size: 0.850rem;
  font-weight: bold;
  margin: 0 auto;
}

.striped-list1 span {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  width: 50%;
  font-size: 0.740rem;
  font-weight: bold;
  text-align: right;
}

.striped-list {
  grid-template-columns: repeat(2, 1fr);
}
/* Anordnung in einem Schachbrettmuster: */
.striped-list li:nth-child(4n+1),
.striped-list li:nth-child(4n+4) {
  background-color: #E0E0E0; /* Farbe A */
}
.striped-list li:nth-child(4n+2),
.striped-list li:nth-child(4n+3) {
  background-color: #C0C0C0; /* Farbe B */
}

.striped-list li {
  padding: 10px;
}

/* Grundlegende Accordion-Stile */
.accordion-item {
  border: none;
}

/* Standardstil für alle Accordion-Buttons */
.accordion-button {
  background-color: white;
  color: var(--accent-color);
  border: none;
  box-shadow: none !important;
  outline: none !important;
}

/* Entfernt den Fokus-Effekt komplett bei allen Buttons */
.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Wenn ein Button geöffnet ist (nicht kollabiert) */
.accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: white;
  box-shadow: none !important;
}

/* Spezifischer Stil für den ersten Button - wird initial geöffnet sein */
#accordionExample .accordion-item:first-child .accordion-button {
  background-color: var(--accent-color);
  color: white;
}

/* Spezifischer Stil für den ersten Button wenn er geschlossen ist */
#accordionExample .accordion-item:first-child .accordion-button.collapsed {
  background-color: white;
  color: var(--accent-color);
}

/* Standardfarbe für Pfeil-Icons in geschlossenen Buttons */
.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Weiße Pfeil-Icons in geöffneten Buttons */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Stil für Accordion-Inhalte */
.accordion-body {
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

/* Spezifischer Stil für den Inhalt des ersten Accordions */
.accordion-item:first-child .accordion-body {
  border-bottom: 1px solid #e0e0e0;
}

/* Vip Section */
.vip .vip-member {
  display: inline-block;
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: none;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  cursor: pointer;
}

.vip .vip-member .member-img {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 300px;
}

.vip .vip-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Skaliert und schneidet das Bild zu, falls nötig */
  object-position: left top; /* Startet den Bildausschnitt oben links */
}

/* Media Query für Bildschirmbreiten bis 430px */
@media (max-width: 430px) {
  .vip .vip-member .member-img {
    width: 11.405rem;
    height: 11.405rem;
  }
}

.vip .vip-member .member-info {
  padding: 25px 15px;
}

.vip .vip-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 15px;
}

.vip .vip-member .member-info h4:hover {
  color:  var(--accent-color);
}

.vip .vip-member .member-info span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.vip .vip-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/* Custom Column Breakpoints im Vip-Bereich */
@media (min-width: 991px) {
  /* Ab 991px – 4 Spalten (20% pro Spalte) */
  .vip .row > div {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 990px) and (min-width: 768px) {
  /* Zwischen 768px und 990px – 3 Spalten (33.33% pro Spalte) */
  .vip .row > div {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}

@media (max-width: 767px) and (min-width: 530px) {
  /* Zwischen 530px und 767px – 3 Spalten (33.33% pro Spalte) */
  .vip .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 529px) {
  /* Ab 529px und kleiner – 2 Spalten (50% pro Spalte) */
  .vip .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  display: inline-block;
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: none;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  cursor: pointer;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  width: 280px;
  height: 280px;
}

.team .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Skaliert und schneidet das Bild zu, falls nötig */
  object-position: left top; /* Startet den Bildausschnitt oben links */
}

/* Media Query für Bildschirmbreiten bis 430px */
@media (max-width: 430px) {
  .team .team-member .member-img {
    width: 11.405rem;
    height: 11.405rem;
  }
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 15px;
}

.team .team-member .member-info h4:hover {
  color:  var(--accent-color);
}

.team .team-member .member-info span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Custom Column Breakpoints im Team-Bereich */
@media (min-width: 1200px) {
  /* Ab 991px – 5 Spalten (20% pro Spalte) */
  .team .row > div {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}

@media (max-width: 990px) and (min-width: 768px) {
  /* Zwischen 768px und 990px – 3 Spalten (33.33% pro Spalte) */
  .team .row > div {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}

@media (max-width: 767px) and (min-width: 530px) {
  /* Zwischen 530px und 767px – 3 Spalten (33.33% pro Spalte) */
  .team .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 529px) {
  /* Ab 529px und kleiner – 2 Spalten (50% pro Spalte) */
  .team .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/*--------------------------------------------------------------
# Same House Section
--------------------------------------------------------------*/
.house .house-member {
  display: inline-block;
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: none;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  cursor: pointer;
}

.house .house-member .member-img {
  position: relative;
  overflow: hidden;
  width: 170px;
  height: 170px;
}

.house .house-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Skaliert und schneidet das Bild zu, falls nötig */
  object-position: left top; /* Startet den Bildausschnitt oben links */
}

/* Media Query für Bildschirmbreiten bis 430px */
@media (max-width: 430px) {
  .house .house-member .member-img {
    width: 11.405rem;
    height: 11.405rem;
  }
}

.house .house-member .member-info {
  padding: 25px 15px;
}

.house .house-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 15px;
}

.house .house-member .member-info h4:hover {
  color:  var(--accent-color);
}

.house .house-member .member-info span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Custom Column Breakpoints im Team-Bereich */
@media (min-width: 1200px) {
  /* Ab 991px – 5 Spalten (20% pro Spalte) */
  .house .row > div {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}

@media (max-width: 990px) and (min-width: 768px) {
  /* Zwischen 768px und 990px – 3 Spalten (33.33% pro Spalte) */
  .house .row > div {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}

@media (max-width: 767px) and (min-width: 530px) {
  /* Zwischen 530px und 767px – 3 Spalten (33.33% pro Spalte) */
  .house .row > div {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}

@media (max-width: 529px) {
  /* Ab 529px und kleiner – 2 Spalten (50% pro Spalte) */
  .house .row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Modal form */
.modal-content {
  border-radius: 0;
}

.modal {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.modal p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .modal {
    padding: 20px;
  }
}

.modal input[type=text],
.modal input[type=email],
.modal select[type=select],
.modal [type=file],
.modal textarea[type=textarea] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.modal input[type=text]:focus,
.modal input[type=email]:focus,
.modal option[type=option]:focus,
.modal select[type=select]:focus,
.modal [type=file]:focus,
.modal textarea[type=textarea]:focus {
  border-color: var(--accent-color);
}

.modal input[type=text]::placeholder,
.modal input[type=email]::placeholder,
.modal input[type=select]::placeholder,
.modal [type=file]::placeholder,
.modal textarea[type=textarea]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.modal-button button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

#btnSubmit {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.modal-button button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#btnSubmit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Service Details Section */
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 20px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box,
.service-details .address-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-bottom: 20px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.service-details .address-box .help-icon {
  font-size: 48px;
}

.service-details .address-box,
.service-details .help-box {
  font-size: 0.875rem;
}

.service-details .help-box span {
  margin-bottom: 28px;
}

.service-details .help-box h4,
.service-details .help-box a,
.service-details .address-box h4,
.service-details .address-box a {
  color: var(--contrast-color);
}

.service-details .service-box.comments {
    border: none !important;
    border-radius: 0 !important;
    border-width: 0 !important;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.gallery {
  width: fit-content;
  object-position: center top;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (min-width: 360px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
    object-position: center top;
  }
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    object-position: center top;
  }
}

@media (min-width: 992px) {
  .gallery {
    grid-template-columns: repeat(7, 1fr);
    object-position: center top;
  }
}

.gallery-item {
  aspect-ratio: 2 / 3;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #ccc;
  transition: filter 0.3s ease;
}

/* Impressum / Datenschutz */
.modal-header h5 {
  color: #fff;
}
.modal-body h6 {
  margin-top:15px;
  color: #fff;
}
.modal-footer .btn {
  width: 60px !important;
  text-align: center;
}

/* 18Years cookies Box */
div.cookie-box {
  max-width: 800px;
  width: 100%;
  padding: 12px;
  background: #202020;
  position: fixed;
  bottom: 15px;
  margin: 0 auto;
  line-height: 110%;
  border-radius: 1em;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 999999;
}

div.cookie-box div.cookie-icon {
  margin: 0px 15px 0px 5px;
}

@media screen and (max-width: 480px) {
  div.cookie-box div.cookie-icon {
    display: none;
  }
}

div.cookie-box div.cookie-text p {
  margin: 0px;
  color: #bdbdbd;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  div.cookie-box div.cookie-text p {
    font-size: calc( 12px + (14 - 12) * (100vw - 320px) / (768 - 320));
  }
}

div.cookie-box div.cookie-text a.accept-cookie {
  max-width: 104px;
  width: 100%;
  -webkit-box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.08);
  color: #202020;
  background: #dddddd;
  border-radius: 0.25em;
}

@media screen and (max-width: 768px) {
  div.cookie-box div.cookie-text a.accept-cookie {
    font-size: calc( 13px + (15 - 13) * (100vw - 320px) / (768 - 320));
  }
}

div.cookie-box div.cookie-text a.accept-cookie:hover {
  background-color: #e2e4fc;
  color: #1524d9;
}

/* 18+ WARNING BOX
================================================================== */
/* 18+ Popup Styling */
#popup18 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  display: none; /* Wird durch JavaScript auf block gesetzt */
}

.popup18_overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.popup18_holder {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup18_holder p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.popup18_holder h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  margin-top: 30px;
}

/* Button-Container für horizontale Anordnung */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

#button_yes_18, #button_no_18 {
  flex: 1;
  max-width: 240px;
  background-color: #f8f8f8;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

#button_yes_18 {
  background-color: var(--accent-color, #007bff);
  border-color: var(--accent-color, #007bff);
}

#button_yes_18 h2, #button_yes_18 p {
  color: white;
}

#button_no_18 {
  background-color: #f2f2f2;
  border-color: #ddd;
}

/* Subtiler Hover-Effekt, nur leicht dunkler */
#button_yes_18:hover {
  background-color: var(--accent-hover-color, #d90053); /* Nur leicht dunkler */
}

#button_no_18:hover {
  background-color: #e6e6e6; /* Nur leicht dunkler */
}

#button_yes_18 h2, #button_no_18 h2 {
  font-size: 22px;
  margin: 0 0 10px 0;
}

#button_yes_18 p, #button_no_18 p {
  font-size: 14px;
  margin: 0;
}

/* Responsive Anpassungen nur für sehr kleine Bildschirme */
@media (max-width: 480px) {
  .button-container {
    flex-direction: column;
    align-items: center;
  }

  #button_yes_18, #button_no_18 {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* cookies */

/* Cookie Bar Styling */
#cookieBar {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  background-color: #202020;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 999990; /* Hoher z-index, um über dem Inhalt zu liegen */
  display: none; /* Wird durch JavaScript auf flex gesetzt */
}

.cookieBar_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookieBar_inner p {
  flex: 1 1 100%;
  margin-bottom: 15px;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.5;
}

.cookieButton {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 10px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.cookieButton:last-child {
  margin-right: 0;
}

.cookieButton:hover {
  background-color: #444;
  text-decoration: none;
  color: #fff;
}

#akzeptieren {
  background-color: var(--accent-color);
}

#akzeptieren:hover {
  background-color: var(--accent-hover-color, #d90053);
}

#ablehnen {
  background-color: #555;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  #cookieBar {
    width: 90%;
  }

  .cookieButton {
    margin-top: 5px;
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  #cookieBar {
    width: 95%;
    padding: 12px;
  }

  .cookieBar_inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookieButton {
    margin-bottom: 8px;
  }
}

/* Offcanvas Styling */
.offcanvas {
    background-color: var(--background-color);
    color: var(--default-color);
}
/* Container-Cropper Styles
--------------------------------------------------------------*/
.container-cropper {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  width: 80%; /* Begrenzte Breite für bessere Lesbarkeit */
  max-width: 1200px; /* Maximale Breite, passt sich an verschiedene Bildschirmgrößen an */
  margin: 0 auto; /* Horizontale Zentrierung durch auto-Ränder */
  text-align: center; /* Text linksbündig ausrichten */
}

/* Row im Container-Cropper */
.container-cropper .row {
  width: 100%; /* Volle Breite innerhalb des Containers */
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: wrap; /* Erlaubt Umbruch bei kleineren Bildschirmen */
}

/* Cropper-Container im Container-Cropper */
.container-cropper .cropper-container {
  width: 100% !important; /* Volle Breite mit !important um andere Stile zu überschreiben */
  margin-bottom: 20px;
}

/* Responsive Anpassungen für Row */
@media (max-width: 991px) {
  .container-cropper .row {
    flex-direction: column; /* Auf kleineren Bildschirmen untereinander anordnen */
  }

  .container-cropper .col-md-9 {
    width: 100%; /* Spalten auf volle Breite setzen */
    padding-left: 0;
    padding-right: 0;
  }
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
}
/* Button-Gruppe präziser definieren und abgrenzen */
.container-cropper .btn-group-crop {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin: 20px 0 !important;
  width: auto !important; /* Nur so breit wie nötig */
  max-width: fit-content !important; /* Maximale Breite auf den Inhalt beschränken */
}


/* Buttons sehr spezifisch definieren */
.container-cropper .btn-group-crop .btn-success,
.container-cropper .btn-group-crop .btn-danger {
  position: relative !important;
  width: 60px !important;
  height: auto !important;
  padding: 6px 0 !important;
  text-align: center !important;
  font-size: 12px !important;
  display: inline-block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  vertical-align: middle !important;
  line-height: normal !important;
  flex: none !important; /* Verhindert Flex-Wachstum */
  min-width: 60px !important; /* Minimale Breite erzwingen */
  max-width: 60px !important; /* Maximale Breite erzwingen */
}

/* Spezifische Stile für den Success-Button */
.container-cropper .btn-group-crop .btn-success {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  border-radius: 0 !important;
  margin-right: 7px !important;
}

/* Spezifische Stile für den Danger-Button */
.container-cropper .btn-group-crop .btn-danger {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  border-radius: 0 !important;
}

.container-cropper .btn-success:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.offcanvas-body {
    padding: 20px;
}
.container-cropper .btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  border-radius: 0;
}

.container-cropper .btn-danger:hover {
  background-color: #bb2d3b;
  border-color: #b02a37;
}

/* sreach */
/* Spezifischer Selektor für die Suchleiste und Select-Elemente */
.row.g-2.justify-content-center.mt-3 .form-select,
.row.g-2.justify-content-center.mt-3 .form-control,
#filterType .form-select,
#filterType select.form-select {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  color: #999;
  font-size: 0.875rem;
  font-family: var(--body-font);
  transition: border-color 0.3s ease;
  height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 33px;
}

.row.g-2.justify-content-center.mt-3 .form-select:focus,
.row.g-2.justify-content-center.mt-3 .form-control:focus,
#filterType .form-select:focus,
#filterType select.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  color: #999;
}

.row.g-2.justify-content-center.mt-3 .form-select option,
#filterType .form-select option,
#filterType select.form-select option {
  color: #999;
}

/* Stil für den Pfeil bei Select-Elementen */
.row.g-2.justify-content-center.mt-3 .form-select,
#filterType .form-select,
#filterType select.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 12px 9px;
  padding-right: 1.5rem;
  border-radius: 0;
}

input.btn-info,
input.btn-info:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: auto 0;
    border:none;
    border-radius: 4px;
    transition: 0.3s;
}

input.btn-info:hover,
input.btn-info:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}
