/* GLOBAL FONT */
@font-face {
	font-family: 'ProximaNova';
	src: url('/font/ProximaNova/ProximaNovaLight.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'ProximaNova';
	src: url('/font/ProximaNova/ProximaNovaBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}

body {
	font-family: 'ProximaNova', sans-serif;
}


body {
	overflow-x: hidden;
  }

  
body, p, a, li, input, button, textarea, select {
	font-family: 'ProximaNova', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #2e2e2e;
  }
  
  h1, h2, h3, h4, h5, h6 {
	font-family: 'ProximaNova', sans-serif;
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 1rem;
	line-height: 1.25;
  }
  
  h1 {
	font-size: 2.5rem;
  }
  
  h2 {
	font-size: 2rem;
	font-family: 'ProximaNova', sans-serif;
  }
  
  h3 {
	font-size: 1.75rem;
  }
  
  h4 {
	font-size: 1.5rem;
  }
  
  h5 {
	font-size: 1.25rem;
  }
  
  h6 {
	font-size: 1rem;
  }
  
  a {
	color: #8e6c4d;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
  }
  
  a:hover {
	color: #5a4632;
	text-decoration: underline;
  }

  body.login-color a:hover {
  color: #E8C5C9;
	}

	body.login-color .text-danger {
  color: #E8C5C9 !important;
	}
  
  strong, b {
	font-weight: 700;
  }
  
  ul, ol {
	padding-left: 1.25rem;
	margin-bottom: 1rem;
  }
  
  button {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 3px;
	transition: all 0.2s ease-in-out;
  }
  
  input,
  textarea,
  select {
	font-size: 1rem;
	border-radius: 4px;
	padding: 0.5rem;
  }

  
.fixed-top-2 {
    margin-top: 46px;
}

body {
    padding-top: 84px;
}

.left-nav,
.right-nav {
  flex: 1;
}

.left-nav ul,
.right-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

main #search_result {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    z-index: 1000;
}

#search_result a {
    color: black;
}

#loading_search {
    height: 100vh;
    width: 100vw;
}

.subcategories.collapsed {
    display: none;
}
.category-dropdown {
    max-height: 80vh;
    overflow-y: auto;
}
.toggle-subcategory {
    background: none;
    border: none;
    cursor: pointer;
}
.tooltip {
    z-index: 250000 !important;
}


.rgba-gradient {
    background: -moz-linear-gradient(
        45deg,
        rgba(42, 27, 161, 0.7),
        rgba(29, 210, 177, 0.7) 100%
    );
    background: -webkit-linear-gradient(
        45deg,
        rgba(42, 27, 161, 0.7),
        rgba(29, 210, 177, 0.7) 100%
    );
    background: -webkit-gradient(
        linear,
        45deg,
        from(rgba(42, 27, 161, 0.7)),
        to(rgba(29, 210, 177, 0.7))
    );
    background: -o-linear-gradient(
        45deg,
        rgba(42, 27, 161, 0.7),
        rgba(29, 210, 177, 0.7) 100%
    );
    background: linear-gradient(
        to 45deg,
        rgba(42, 27, 161, 0.7),
        rgba(29, 210, 177, 0.7) 100%
    );
}

:root {
    --color__accent: #bbdde9;

    --field__background: #fff;
    --field__background--hover: #fff;
    --input__border: rgba(0, 0, 0, 0.42);
    --input__border--hover: rgba(0, 0, 0, 0.62);
    --label__color: #222;

    --font__size: 16px;
    --font__family: Roboto, Arial, sans-serif;
}

.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin: 0px auto;
    -webkit-animation: rotation 0.6s infinite linear;
    -moz-animation: rotation 0.6s infinite linear;
    -o-animation: rotation 0.6s infinite linear;
    animation: rotation 0.6s infinite linear;
    border-left: 6px solid rgba(0, 174, 239, 0.15);
    border-right: 6px solid rgba(0, 174, 239, 0.15);
    border-bottom: 6px solid rgba(0, 174, 239, 0.15);
    border-top: 6px solid rgba(0, 174, 239, 0.8);
    border-radius: 100%;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
}
@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.navbar {
    font-family: "ProximaNova", sans-serif;
    font-size: 1rem;
    background-color: #d7c4b6 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1rem;
    letter-spacing: 0.3px;
}

.navbar .nav-link {
    font-weight: 600;
    color: #2e2e2e !important;
    transition: all 0.2s ease-in-out;
    padding: 0.5rem 1rem;
}

.navbar .nav-link:hover, .navbar .nav-item.active .nav-link {
  color: #fff !important;
}

.navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.03);
}

.dropdown-menu {
    background-color: #f5efe9;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    font-family: "ProximaNova", sans-serif;
    color: #2e2e2e;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #e9d9cb !important;
    color: #8e6c4d !important;
}

.navbar .nav-link {
    letter-spacing: 1px;
    font-weight: 500;
    color: #2e2e2e !important;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover {
    color: #8e6c4d !important;
}

.navbar-toggler {
    border: none;
    font-size: 1.2rem;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' ...");
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: #f8f5f2;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #ede6df;
    color: #a88c6b;
}

.search-box input[type="text"] {
    border-radius: 30px;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    font-style: italic;
}

.search-box input[type="text"]::placeholder {
    color: #999;
}

/* Shopping cart icon */
.show-sidebar {
    cursor: pointer;
    color: #333;
    transition: color 0.2s ease;
}
.show-sidebar:hover {
    color: #a88c6b;
}

header {
	position: relative;
	z-index: 1000;
}

#header-count-articles,
#header-count-articles-mobile {
    background: #a88c6b;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}


.search-bar {
	position: fixed;
	top: 80px; /* oder Höhe deines Headers */
	left: 0;
	right: 0;
	background: #e9ded1;
	z-index: 1001;
	padding: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #ddd;

	/* Wichtig: Startzustand */
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.search-bar.active {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}


.search-bar-inner {
	display: flex;
	width:100%;
	align-items: center;
	gap: 1rem;
}

.container-wide {
	width: 100%;
	max-width: 1600px; /* Oder z. B. 1320px – je nach Design */
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
}


.close-search {
	font-size: 1.8rem;
	cursor: pointer;
	color: #000;
	margin-right: 1rem;
	transition: color 0.2s;
}

.close-search:hover {
	color: #000;
}

.suggestions {
	padding: 1rem;
	display: none;
}

.suggestions.active {
	display: block;
}


.navbar .navbar-brand img {
    max-height: 50px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand.mx-auto {
        margin-left: auto;
        margin-right: auto;
    }
}


/* DARK MODE */ 

/* Dunkler Modus: Icon weiß färben */
/* Standardfarbe */
.navbar-toggler .toggle-icon {
	color: #2e2e2e;
	font-size: 1.5rem;
  }
  
  /* Im Dark Mode: Icon weiß */
  body.dark-mode .navbar-toggler .toggle-icon {
	color: #ffffff;
  }
  
  /* Optional: Hover Effekte */
  .navbar-toggler:hover .toggle-icon {
	color: #8e6c4d;
  }
  body.dark-mode .navbar-toggler:hover .toggle-icon {
	color: #d5b89c;
  }


body.dark-mode {
	background-color: #313131;
	color: #eaeaea;
  }
  
  body.dark-mode h1,
  body.dark-mode h2,
  body.dark-mode h3,
  body.dark-mode h4,
  body.dark-mode h5,
  body.dark-mode h6 {
	color: #ffffff !important;
  }
  
  body.dark-mode a {
	color: #d5b89c;
  }
  
  body.dark-mode a:hover {
	color: #e8cdb6;
  }
  
  body.dark-mode .navbar {
	background-color: #313131 !important;
	box-shadow: none;
  }
  
  body.dark-mode .navbar .nav-link {
	color: #e0e0e0 !important;
  }
  
  body.dark-mode .navbar .nav-link:hover {
	color: #d5b89c !important;
  }
  
  body.dark-mode .dropdown-menu {
	background-color: #3a3a3a;
	color: #f1f1f1;
  }
  
  body.dark-mode .dropdown-item {
	color: #e0e0e0;
  }
  
  body.dark-mode .dropdown-item:hover {
	background-color: #4a4a4a;
	color: #d5b89c;
  }
  
  body.dark-mode input,
  body.dark-mode textarea,
  body.dark-mode select {
	background-color: #2c2c2c;
	color: #fff;
	border-color: #444;
  }
  
  body.dark-mode .card {
	background-color: #2d2d2d;
	border: none;
	color: #f1f1f1;
  }
  
  body.dark-mode .btn:not(.btn-inverse, .btn-luca) {
	background-color: #444;
	color: #000;
	border-color: #555;
  }
  body.dark-mode .footer-bottom * {
	color: #fff !important;
  }

  body.dark-mode table, li, #date-picker-example {
	color: #fff !important;
  }
  body.dark-mode #date-picker-example {
	background-color: #000 !important;
  }
  
  body.dark-mode .btn:hover {
	background-color: #555;
	color: #fff;
  }
  
  body.dark-mode .search-overlay {
	background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
	color: #fff;
  }

  /* Shopping Cart Icon – Dark Mode */
body.dark-mode .fa-shopping-cart {
	color: #ffffff !important;
}

body.dark-mode .show-sidebar:hover .fa-shopping-cart {
	color: #d5b89c !important;
}

  
  /* Smooth transition for dark mode */
body {
	transition: background-color 0.5s ease, color 0.5s ease;
  }
  
  .navbar,
  .navbar .nav-link,
  .dropdown-menu,
  .dropdown-item,
  .card,
  input,
  textarea,
  select,
  .btn,
  .search-overlay {
	transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  }

  body.theme-transition {
	transition: all 0.4s ease !important;
	opacity: 0.8;
  }

/* === Teaser / Carousel Basics === */
.carousel-item,
.carousel-item .view {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.carousel-item img.d-block.w-100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Caption Styling === */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 10;
  text-align: left;
  max-width: 50%;
  padding: 1rem 2rem;
  color: inherit;
}

/* Headline */
.carousel-caption h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Text */
.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Button */
.carousel-caption .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  white-space: normal;
  word-break: break-word;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
	.carousel-item,
	.carousel-item .view {
	  height: 65vh;
	  min-height: 400px;
	}

  .carousel-caption {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    text-align: center;
    padding: 1rem;
  }

  body.dark-mode .carousel-caption {
    background: rgba(0, 0, 0, 0.85); /* Auch im Dark Mode */
  }


  .carousel-caption h3 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 767.98px) {
	.carousel-item,
	.carousel-item .view {
	  height: 60vh;
	  min-height: 350px;
	}
  }

  @media (max-width: 767px) {
	.teaser-image {
	  object-position: center center;
	  object-fit: cover;
	}
  }

@media (max-width: 575.98px) {
	.carousel-item,
	.carousel-item .view {
	  height: auto;
	  min-height: auto;
	}
  
	.teaser-image {
	  height: auto;
	  width: 100%;
	}

  .carousel-caption {
    top: auto;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
	background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */

  }

  .carousel-caption h3 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
}

  body.dark-mode .carousel-caption {
	background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */
	color: #fff;
}

body.dark-mode .carousel-caption h3,
body.dark-mode .carousel-caption p,
body.dark-mode .carousel-caption a {
	color: #ffffff !important;
}
  
  /* Textstyling unabhängig vom Dark Mode */
  .carousel-caption h3,
  .carousel-caption p,
  .carousel-caption a {
	color: inherit !important;
	text-shadow: none;
  }
  
  /* Optional: responsive fallback für kleinere Screens */
  @media (max-width: 767px) {
	.carousel-caption {
	  left: 8%;
	  max-width: 84%;
	  background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */
	  text-align: center;
	  transform: translateY(-50%);
	}
  }

  .teaser-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .teaser-image.right-center {
	object-position: right center;
  }
  
  .teaser-image.center-center {
	object-position: center center;
  }
  
  .teaser-image.left-center {
	object-position: left center;
  }

  .teaser-image {
	object-position: center center; /* default fallback */
  }
  
  
  @media (min-width: 576px) and (max-width: 767.98px) {
	.carousel-item,
	.carousel-item .view {
	  position: relative;
	  height: auto;
	  min-height: 450px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}
  
	.teaser-image {
	  width: 100%;
	  height: auto;
	  max-height: 100vh;
	  object-fit: cover;
	}
  
	.carousel-caption {
		position: absolute;
		bottom: 5%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;                /* volle Breite */
		max-width: 100%;            /* überschreibt vorherige Begrenzung */
		text-align: center;
		background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */
		padding: 1.5rem 1rem;
		border-radius: 0.5rem;
		z-index: 10;
		color: #fff;
		box-sizing: border-box;     /* verhindert Überlauf bei padding */
	  }
	
	  .carousel-caption h3 {
		font-size: 1.6rem;
	  }
	
	  .carousel-caption p {
		font-size: 1rem;
	  }
	
	  .carousel-caption .btn {
		font-size: 0.95rem;
		padding: 0.6rem 1.2rem;
		width: auto;
	  }
  }
  
  @media (max-width: 991.98px) {
	.navbar-collapse {
	  flex-direction: column;
	  align-items: center;
	}
  
	.navbar-collapse .left-nav,
	.navbar-collapse .right-nav {
	  width: 100%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}
  
	.navbar-collapse ul.navbar-nav {
	  width: 100%;
	  flex-direction: column;
	  align-items: center;
	  padding: 0;
	}
  
	.navbar-collapse ul.navbar-nav .nav-item {
	  width: 100%;
	}
  
	.navbar-collapse ul.navbar-nav .nav-link {
	  padding: 0.75rem 1rem;
	  width: 100%;
	}
  
	.navbar-collapse .navbar-brand {
	  margin-bottom: 1rem;
	}
  }

  .with-us-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }
  
  .with-us-icon {
	width: 60px;
	height: auto;
	transition: transform 0.3s ease;
  }

    .icon2x {
	width: 110px !important;
  }

     .icon2x2 {
	width: 80px !important;
  }
  
  .with-us-icon:hover {
	transform: scale(1.05);
  }
  
  .with-us-title {
	font-family: 'ProximaNova', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1c1c1c;
  }

  .with-us-title {
	color: #1c1c1c; /* Standardfarbe (z. B. dein Headline-Farbton) */
	font-weight: 700;
  }
  
  body.dark-mode .with-us-title {
	color: #ffffff; /* explizit NICHT weiß */
  }
  
  body.dark-mode  .with-us-section {
	background-color: #313131;
	color: #ffffff;
  }

  body.dark-mode  .with-us-section p {
	color: #ffffff !important;
  }
  
  .with-us-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	padding: 0 10px;
  }
  

/* Target only your testimonial carousel */
.testimonial-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }

.testimonial-section .carousel-item {
	padding: 2rem 0;
	height: auto !important;
	min-height: unset !important;
  }
  
  .testimonial-avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
  }
  
  .testimonial-text {
	font-size: 1.1rem;
	font-style: italic;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.6;
  }
  
  .testimonial-section .carousel-control-prev,
  .testimonial-section .carousel-control-next {
	filter: invert(60%);
	opacity: 0.6;
  }
  
  .testimonial-section .carousel-control-prev:hover,
  .testimonial-section .carousel-control-next:hover {
	opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
	width: 60px;              /* Größer */
	height: 60px;
	background-size: 60px 60px !important;  /* Ganz wichtig */
	filter: none;
	opacity: 1;
	border-radius: 50%;
  }
  
  /* Heller beim Hover */
  .carousel-control-prev:hover .carousel-control-prev-icon,
  .carousel-control-next:hover .carousel-control-next-icon {
	transform: scale(1.1);
  }
  
  body.dark-mode .carousel-control-prev-icon,
  body.dark-mode .carousel-control-next-icon {
	filter: brightness(0) invert(1); /* macht das Icon weiß */
	background-size: 60px 60px !important;
	width: 60px;
	height: 60px;
	opacity: 1;
  }

  :root {
	--luca-beige: #d7c4b6;
	--text-dark: #1c1c1c;
	--text-light: #eaeaea;
  }
  	
  /* Quote Icon Farbe */
  .testimonial-text .quote-icon {
	color: var(--luca-beige);
	font-size: 1.5rem;
  }
  
  /* Avatar-Styling */
  .testimonial-avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--luca-beige);
  }
  
  /* Testimonial Text */
  .testimonial-text {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--text-dark);
	margin-bottom: 1rem;
	line-height: 1.6;
  }
  
  /* Dark Mode Support */
 
  
  body.dark-mode .testimonial-text .quote-icon {
	color: var(--luca-beige); /* gleiche Farbe, passt auch auf dunkel */
  }
  
  body.dark-mode .testimonial-avatar {
	border-color: var(--luca-beige);
  }

  /* DARK MODE Styling für Testimonial Section */
body.dark-mode .testimonial-section {
	background-color: #494949;
	color: #ffff;
}
  
  /* Textstyling unabhängig vom Dark Mode */
  .carousel-caption h3,
  .carousel-caption p,
  .carousel-caption a {
	color: inherit !important;
	text-shadow: none;
  }
  
  /* Optional: responsive fallback für kleinere Screens */
  @media (max-width: 767px) {
	.carousel-caption {
	  left: 8%;
	  max-width: 84%;
	  background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */
	  text-align: center;
	  transform: translateY(-50%);
	}
  }

  .teaser-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .teaser-image.right-center {
	object-position: right center;
  }
  
  .teaser-image.center-center {
	object-position: center center;
  }
  
  .teaser-image.left-center {
	object-position: left center;
  }

  .teaser-image {
	object-position: center center; /* default fallback */
  }
  
  
  @media (min-width: 576px) and (max-width: 767.98px) {
	.carousel-item,
	.carousel-item .view {
	  position: relative;
	  height: auto;
	  min-height: 450px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}
  
	.teaser-image {
	  width: 100%;
	  height: auto;
	  max-height: 100vh;
	  object-fit: cover;
	}
  
	.carousel-caption {
		position: absolute;
		bottom: 5%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;                /* volle Breite */
		max-width: 100%;            /* überschreibt vorherige Begrenzung */
		text-align: center;
		background: rgba(0, 0, 0, 0); /* z. B. im Light Mode transparent, im Dark Mode abgedunkelt */
		padding: 1.5rem 1rem;
		border-radius: 0.5rem;
		z-index: 10;
		color: #fff;
		box-sizing: border-box;     /* verhindert Überlauf bei padding */
	  }
	
	  .carousel-caption h3 {
		font-size: 1.6rem;
	  }
	
	  .carousel-caption p {
		font-size: 1rem;
	  }
	
	  .carousel-caption .btn {
		font-size: 0.95rem;
		padding: 0.6rem 1.2rem;
		width: auto;
	  }
  }
  
  @media (max-width: 991.98px) {
	.navbar-collapse {
	  flex-direction: column;
	  align-items: center;
	}
  
	.navbar-collapse .left-nav,
	.navbar-collapse .right-nav {
	  width: 100%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}
  
	.navbar-collapse ul.navbar-nav {
	  width: 100%;
	  flex-direction: column;
	  align-items: center;
	  padding: 0;
	}
  
	.navbar-collapse ul.navbar-nav .nav-item {
	  width: 100%;
	
	}
  
	.navbar-collapse ul.navbar-nav .nav-link {
	  padding: 0.75rem 1rem;
	  width: 100%;
	}
  
	.navbar-collapse .navbar-brand {
	  margin-bottom: 1rem;
	}
  }

  .with-us-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }
  
  .with-us-icon:hover {
	transform: scale(1.05);
  }
  
  .with-us-title {
	font-family: 'ProximaNova', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1c1c1c;
  }

  .with-us-title {
	color: #1c1c1c; /* Standardfarbe (z. B. dein Headline-Farbton) */
	font-weight: 700;
  }
  
  body.dark-mode .with-us-title {
	color: #ffffff; /* explizit NICHT weiß */
  }
  
  body.dark-mode  .with-us-section {
	background-color: #313131;
	color: #ffffff;
  }

  body.dark-mode  .with-us-section p {
	color: #ffffff !important;
  }
  
  .with-us-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	padding: 0 10px;
  }
  

/* Target only your testimonial carousel */
.testimonial-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }

.testimonial-section .carousel-item {
	padding: 2rem 0;
	height: auto !important;
	min-height: unset !important;
  }
  
  .testimonial-avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
  }
  
  .testimonial-text {
	font-size: 1.1rem;
	font-style: italic;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.6;
  }
  
  .testimonial-section .carousel-control-prev,
  .testimonial-section .carousel-control-next {
	filter: invert(60%);
	opacity: 0.6;
  }
  
  .testimonial-section .carousel-control-prev:hover,
  .testimonial-section .carousel-control-next:hover {
	opacity: 1;
  }

body.dark-mode .testimonial-text {
	color: #ffffff;
}

body.dark-mode .testimonial-text.font-weight-bold {
	color: #ffff;
}

body.dark-mode .testimonial-section h2 {
	color: #ffffff;
}

body.dark-mode .testimonial-section .carousel-control-prev,
body.dark-mode .testimonial-section .carousel-control-next {
	opacity: 1;
}

body.dark-mode .testimonial-section .carousel-control-prev:hover,
body.dark-mode .testimonial-section .carousel-control-next:hover {
	opacity: 1;
}

  
  
  /* === Footer Base === */
.page-footer {
	background-color: #EBE2DB;
	color: #1c1c1c; /* <-- dunkel für hellen Hintergrund */
	font-family: 'ProximaNova', sans-serif;
	font-size: 0.95rem;
  }
  
 .page-footer a {
  color: #000 !important;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
  
  .page-footer a:hover {
	color: #5a4632;
	text-decoration: underline;
  }
  
  /* === Sections === */
  .top-footer {
	border-bottom: 1px solid #d7c4b6;
  }
  
  .footer-static-title h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1c1c1c;
  }
  
  .footer-menu ul li {
	margin-bottom: 0.5rem;
  }
  
  .footer-menu ul li a {
	font-weight: 500;
  }
  
  /* Responsive Padding */
  .footer-wrap {
	padding-left: 1rem;
	padding-right: 1rem;
  }
  
  /* Contact area styling */
  .contact {
	display: flex;
	flex-direction: column;
  }
  
  .contact .icon span {
	display: block;
	font-weight: 700;
	margin-bottom: 0.2rem;
	font-size: 1rem;
	color: #1c1c1c;
  }
  
  .contact .text p a {
	font-weight: 500;
	font-size: 1rem;
  }
  
  /* === Footer Bottom (e.g. Payments, Copyright) === */
  .footer-bottom {
	background-color: #e9ded1;
	color: #666;
	font-size: 0.85rem;
	text-align: center;
	padding: 1rem 0;
  }
  
  /* === DARK MODE === */
  body.dark-mode .page-footer {
	background-color: #313131;
	color: #eaeaea;
  }
  
  body.dark-mode .footer-static-title h4,
  body.dark-mode .contact .icon span {
	color: #ffffff;
  }
  
  body.dark-mode .page-footer a {
	color: #fff !important;
  }
  
  body.dark-mode .page-footer a:hover {
	color: #e8cdb6;
  }
  
  body.dark-mode .footer-bottom {
	background-color: #1f1f1f;
	color: #aaa;
  }
  
  /* Optional: soft border */
  body.dark-mode .top-footer {
	border-color: #444;
  }

  body.dark-mode .btn-outline-dark {
	color: #fff !important;
	border-color: #aaa !important;
  }
  
  body.dark-mode .btn-outline-dark:hover {
	background-color: #fff !important;
	color: #111 !important;
  }

  .brand-story h2 {
	font-size: 1.8rem;
	line-height: 1.4;
	color: #2e2e2e;
  }
  
  .brand-story h4 {
	font-size: 0.9rem;
	letter-spacing: 1px;
	font-weight: 600;
	color: #b89c87;
  }
  
  .brand-story p {
	font-size: 1rem;
	line-height: 1.7;
	color: #000;
  }
  
  .brand-story blockquote {
	border-left: 4px solid #d1b5a5;
	padding-left: 1rem;
	font-style: italic;
	color: #7a6c5f;
  }
  
/* Dark Mode Styling für .brand-story Sektion */
body.dark-mode .brand-story h2,
body.dark-mode .brand-story h4,
body.dark-mode .brand-story p,
body.dark-mode .brand-story blockquote {
  color: #ffffff !important; /* weiße Schrift im Dark Mode */
} 

body.dark-mode .brand-story blockquote p {
  border-color: #e0c3ab; /* heller Akzent im Dark Mode */
  color: #ffff !important;
}

.carousel-indicators.lf-indicators {
	bottom: 20px;
	margin-bottom: 1rem;
  }
  
  .carousel-indicators.lf-indicators li {
	background-color: rgba(174, 143, 109, 0.5); /* zartes Beige */
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 6px;
	border: none;
	box-shadow: none; /* ← verhindert ovalen Schatten */
	transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .carousel-indicators.lf-indicators li.active {
	background-color: #d7b188; /* intensives Beige für aktiv */
	transform: scale(1.2);
  }
  

  body.dark-mode .carousel-indicators.lf-indicators li {
	background-color: rgba(255, 255, 255, 0.3);
  }
  
  body.dark-mode .carousel-indicators.lf-indicators li.active {
	background-color: #ffffff;
  }
  
  .values-section {
	background-color: #f5f5f5;
	color: #2e2e2e;
  }
  
.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: #D7C4B6;
  font-weight: 600;
}
  
  .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1c1c1c;
  }
  
  /* Dark Mode */
  body.dark-mode .values-section {
	background-color: #1f1f1f;
	color: #eaeaea;
  }
  
  body.dark-mode .section-subtitle {
	color: #d5b89c;
  }
  
  body.dark-mode .section-title {
	color: #ffffff;
  }
  
  .value-icon {
	transition: transform 0.3s ease;
  }
  
  .value-icon:hover {
	transform: scale(1.05);
  }
  
  .fade-in {
	animation: fadeIn 1s ease-in-out both;
  }
  
  @keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
  }
  
  .date-hero-section {
	background: linear-gradient(135deg, #e9ded1, #f6f2ed);
	color: #1f1f1f;
	overflow: hidden;
	position: relative;
  }
  
  body.dark-mode .date-hero-section {
	background: linear-gradient(135deg, #1e1e1e, #2b2b2b);
	color: #f5f5f5;
  }
  
  .section-eyebrow {
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	font-weight: 600;
	color: #a88c6b;
  }
  
  body.dark-mode .section-eyebrow {
	color: #e8cdb6;
  }
  
  .glow-text {
	color: #1c1c1c;
	text-shadow: 0 0 15px rgba(168, 140, 107, 0.25);
  }

  body.login-color .search-bar {
  background: #e0bbbd !important;
}
  
  body.dark-mode .glow-text {
	color: #fefefe;
	text-shadow: 0 0 20px rgba(232, 205, 182, 0.35);
  }

  .btn-success {
	background-color: #fff !important;  /* Warmes, pastelliges Grün */
	color: #3C6651;
	border: 1px solid #000 !important;
	border: none;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.btn-success:hover {
	background-color: #fff !important;  /* Etwas kräftiger beim Hover */
	color: #2d5543;
}

.btn-success.disabled, .btn-success:disabled {
  color: #000 !important;
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}

body.login-color .timeline-icon {
  background-color: white;
  border: 3px solid #E8C5C9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8C5C9 !important;
  font-size: 18px;
  z-index: 1;
}

body.login-color .section-eyebrow {
  color: #E8C5C9 !important;
}

body.login-color .founder-quote {
   color: #E8C5C9 !important;
}


.btn {
	border-radius: 5px !important;
}


  .btn-luca,
.btn-primary {
	background-color: #D7C4B6;
	color: #000 !important;
	font-weight: 400;
	transition: all 0.3s ease-in-out;
  }
  
  body.dark-mode .btn-luca,
body.dark-mode .btn-primary {
	background-color: #dbc1a3;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
  }
  .btn-luca:hover,
.btn-primary:hover {
	background-color: #dbc1a3;
	color: #fff;
	transform: translateY(-2px);
  }

body.dark-mode .btn-luca:hover,
body.dark-mode .btn-primary:hover {
	background-color: #dbc1a3;
	color: #fff;
	transform: translateY(-2px);
  }

  .btn-luca-secondary {
	background-color: #E3D2DA;
	color: #000; /* dezentes Dunkelbraun für guten Kontrast */
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}
body.dark-mode .btn-luca-secondary {
	background-color: #E3D2DA;
	color: #000; /* dezentes Dunkelbraun für guten Kontrast */
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}

.btn-luca-secondary:hover {
	background-color: #cfb8c2;
	color: #fff;
	transform: translateY(-2px);
}
body.dark-mode .btn-luca-secondary:hover {
	background-color: #cfb8c2;
	color: #000;
	transform: translateY(-2px);
}

.btn {
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

  
  .image-glow-wrapper img {
	border-radius: 16px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .image-glow-wrapper img:hover {
	transform: scale(1.03);
	box-shadow: 0 0 40px rgba(168, 140, 107, 0.5);
  }


  body.dark-mode .lead {
	color: #ffffff;
  }

  /* Standard-Styling */

  .partner-bar {
	background-color: #e9ded1;
	color: #333;
	font-size: 0.9rem;
	font-family: 'ProximaNova', sans-serif;
	border-bottom: 1px solid #d5c4b6;
  }

  body.login-color .partner-bar {
	background-color: #FFEEEF;
	color: #333;
	font-size: 0.9rem;
	font-family: 'ProximaNova', sans-serif;
	border-bottom: 1px solid #d5c4b6;
  }
  
  /* Dark Mode Styling */
  body.dark-mode .partner-bar {
	background-color: #2b2b2b;
	color: #f5f5f5;
	border-bottom: 1px solid #444;
  }
  
  #backToTopBtn {
	position: fixed;
	bottom: 120px;
	right: 40px;
	z-index: 999;
	background-color: #D7C4B6;
	color: white;
	border: none;
	border-radius: 50%;
	padding: 0.8rem 1.2rem;
	font-size: 1.2rem;
	display: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #backToTopBtn:hover {
	transform: scale(1.1);
	background-color: #D7C4B6;
  }
  
  
  #backToTopBtn:hover {
	transform: translateY(-2px);
  }
  
  /* Dark Mode */
  body.dark-mode #backToTopBtn {
	background-color: #8e6c4d;
	color: #fff;
  }

  body.dark-mode .values-section p {
	color: #ffffff;
}

.floating-contact {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	font-family: sans-serif;
}

/* Kompakte Leiste */
.contact-toggle {
	display: flex;
	align-items: center;
	background-color: #E9DED1;
	color: #000;
	border-radius: 30px;
	padding: 0.5rem 1rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: background-color 0.2s;
}

.contact-toggle img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 0.5rem;
	border: 2px solid white;
}

.close-contact {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s;
}

.close-contact:hover {
	color: #ccc;
}

/* Kontaktkarte – anfangs versteckt */
.contact-card {
	position: relative;
	background-color: #fff;
	color: #000;
	width: 280px;
	padding: 2rem 1.5rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	text-align: center;
	display: none;
	margin-top: 0.5rem;
}

.contact-card.open {
	display: block;
}

.contact-avatar {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	background-color: #fff;
}

.contact-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-card h4 {
	margin-top: 2.5rem;
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-card p {
	font-size: 0.95rem;
	margin: 1rem 0 1.5rem;
	line-height: 1.4;
}




.floating-avatar {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	display: flex;
	align-items: flex-end;
	gap: 1rem;
	cursor: pointer;
}

.avatar-bubble {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 3px solid white;
}

.avatar-bubble:hover {
	transform: scale(1.08);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.avatar-bubble img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.partner-card {
	position: absolute;
	right: 90px;
	bottom: 10px;
	background-color: #fff;
	color: #333;
	padding: 1rem;
	border-radius: 12px;
	width: 250px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.floating-avatar:hover .partner-card,
.floating-avatar.touch-active .partner-card {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Dark Mode Support */
body.dark-mode .partner-card {
	background-color: #2c2c2c;
	color: #f0f0f0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.dark-mode .avatar-bubble {
	background: #444;
	border-color: #666;
}

  
  body.dark-mode .partner-card,
body.dark-mode .partner-card p,
body.dark-mode .partner-card i {
  color: #f0f0f0 !important;
}



/* Hero Background */
.about-hero {
	background-image: url('/img/LF_ThisIsUs-Header2.jpg');
	background-size: cover;
	background-position: center;
	height: 80vh;
	color: #1c1c1c;
	position: relative;
  }
  
  @media (max-width: 600px) {
	.about-hero {
		height: auto;        
		min-height: 350px;  
		padding: 36px 0 24px 0;
	}
	.about-hero h1 {
		font-size: 2.1rem;
	}
	.about-hero p {
		font-size: 1.05rem;
	}
}


  .about-hero h1,
  .about-hero p {
	color: inherit;
	text-shadow: 0 1px 3px rgba(255,255,255,0.5);
  }
  
  body.dark-mode .about-hero {
	background-color: #111;
	color: #fff;
  }
  
  body.dark-mode .about-hero h1,
  body.dark-mode .about-hero p {
	color: #fff;
	text-shadow: none;
  }
  
  /* Origins Section */
  .about-origins .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1c1c1c;
  }
  
  .about-origins.section-subtitle {
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	font-weight: 600;
	}
  
  body.dark-mode .about-origins {
	background-color: #2c2c2c;
	color: #f5f5f5;
  }
  
  body.dark-mode .about-origins .section-title,
  body.dark-mode .about-origins h5 {
	color: #fff;
  }
  
  body.dark-mode .about-origins p:not(.section-subtitle) {
	color: #fff !important;
  }

  .about-hero .container {
	margin-top: -100px; /* hebt den Text nach oben */
  }
  
  @media (max-width: 768px) {
	.about-hero .container {
	  margin-top: -20px; /* auf mobilen Geräten etwas sanfter */
	}
  }
  
  .founder-highlight {
	background-color: #f9f6f3;
  }
  
  body.dark-mode .founder-highlight {
	background-color: #1f1f1f;
  }
  
  .founder-wrapper {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
  }
  
  .founder-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	filter: brightness(85%);
	transition: filter 0.3s ease;
  }

  .rounded {
  border-radius: .0rem !important;
}
  
  .founder-wrapper:hover .founder-image img {
	filter: brightness(100%);
  }
  
  .founder-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	width: 100%;
	color: #fff;
	z-index: 2;
  }
  
  .section-eyebrow {
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	color: #d5b89c;
	font-weight: 600;
  }
  
  .section-title {
	font-size: 2.2rem;
	font-weight: 700;
  }
  
  .founder-quote {
	font-style: italic;
	font-size: 1.1rem;
	color: #e8cdb6;
  }
  
  .founder-text {
	font-size: 1rem;
	color: #f1f1f1;
	line-height: 1.6;
  }
  
  /* Responsive Textaufhellung bei Dark Mode */
  body.dark-mode .founder-overlay {
	background: linear-gradient(to top, rgba(20, 20, 20, 0.85), rgba(20, 20, 20, 0));
  }
  

  .founder-parallax {
	background-image: url('/img/luca_fiorini_portrait.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 100vh;
	position: relative;
	z-index: 1;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }
  
  .founder-parallax::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
	z-index: 0;
  }
  
  .founder-parallax .container {
	position: relative;
	z-index: 2;
  }
  
  .section-eyebrow {
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	color: #d5b89c;
	font-weight: 600;
  }
  
  .founder-quote {
	font-style: italic;
	font-size: 1.25rem;
	color: #f3e1cf;
  }
  
  .founder-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #fefefe;
  }
  
  @media (max-width: 767px) {
	.founder-parallax {
	  background-attachment: scroll;
	  background-position: center center;
	  text-align: center;
	}
  }
  

  .values-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }
  
  .icon-box {
	background: #fff;
	border: 1px solid #eee;
	transition: all 0.3s ease;
  }
  
  .icon-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  
  .values-section h5 {
	color: #000;
  }
  
  .values-section p {
	font-size: 0.95rem;
	line-height: 1.6;
  }

  .icon-box {
	transition: box-shadow 0.3s ease;
  }
  .icon-box:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.08);
  }

  .value-detail {
	display: none;
	transition: all 0.4s ease;
	padding: 1rem;
	background-color: #f8f5f2;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .value-detail.show {
	display: block;
  }

  /* Dark Mode Anpassungen */
body.dark-mode .icon-box {
	background-color: #2a2a2a; /* dunkler Hintergrund */
	color: #f0f0f0; /* heller Text */
	border-color: #444; /* optional: leicht sichtbare Umrandung */
  }
  
  body.dark-mode .icon-box h5,
  body.dark-mode .icon-box p {
	color: #ffff; /* heller Text in Darkmode */
  }
  
  body.dark-mode .value-detail {
	background-color: #2a2a2a; /* ebenfalls dunkler Hintergrund */
	color: #e0e0e0;
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
  }
  
  /* Optional: Scroll-Ziel Hervorhebung */
  body.dark-mode .value-detail h4,
  body.dark-mode .value-detail h5
   {
	color: #ffffff;
  }

  /* Icon-Karten im Dark Mode dunkler darstellen */
body.dark-mode .values-section .icon-box {
	background-color: #2e2e2e;
	color: #f5f5f5;
  }
  
  /* Optional: Kartenrand leicht sichtbar lassen */
  body.dark-mode .values-section .icon-box {
	border: 1px solid #444;
  }
  
  /* Detail-Boxen ebenfalls abdunkeln */
  body.dark-mode .value-detail {
	background-color: #2e2e2e;
	color: #f5f5f5;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Headlines & Paragraphs im Dark Mode */
  body.dark-mode .value-detail h4,
  body.dark-mode .value-detail h5,
  body.dark-mode .value-detail p {
	color: #ffffff;
  }
  
  /* Icon-Box Titel & Text */
  body.dark-mode .values-section h5,
  body.dark-mode .values-section p {
	color: #f0f0f0;
  }
  
  /* Ausnahmeregel: Subtitle NICHT umfärben */
  body.dark-mode .values-section .section-subtitle {
	color: #ae8f6d !important; /* bleibt hell, wie im Light Mode */
  }

  
  .timeline {
	position: relative;
	margin-left: 20px; /* vorher 40px */
	border-left: 3px solid #d7c4b6;
	padding-left: 40px; /* bleibt gleich, damit die Inhalte nicht zu eng sitzen */
  }
  
  .timeline-item {
	position: relative;
	margin-bottom: 50px;
  }
  
  .timeline-icon {
	position: absolute;
	left: -61px; /* vorher -61px → angepasst an margin-left */
	top: 0;
	width: 40px;
	height: 40px;
	background-color: white;
	border: 3px solid #d7c4b6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D7C4B6;
	font-size: 18px;
	z-index: 1;
  }
  
  .timeline-content h5 {
	font-weight: bold;
	margin-bottom: 6px;
	color: #1c1c1c;
  }
  
  .timeline-content p {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 0;
  }
  
  /* Optional: zentrierte Gesamtbreite */
  .duft-timeline .container {
	max-width: 800px;
  }
  
  /* Dark Mode Support */
  body.dark-mode .timeline {
	border-color: #8e6c4d;
  }
  body.dark-mode .timeline-icon {
	background-color: #313131;
	border-color: #d5b89c;
	color: #d5b89c;
  }
  body.dark-mode .timeline-content h5,
  body.dark-mode .timeline-content p {
	color: #f5f5f5;
  }
  
  
  .about-team .team-avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--luca-beige);
  }
  
  .about-team .team-card {
	background-color: #ffffff;
	transition: transform 0.3s ease;
  }
  
  .about-team .team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .about-team .team-bio {
	color: #555;
  }
  
  body.dark-mode .about-team .team-card {
	background-color: #2a2a2a;
	color: #fff;
  }
  
  body.dark-mode .about-team .team-bio,
  body.dark-mode .about-team .text-muted {
	color: #ccc !important;
  }


  .testimonial-section {
	background-color: #f5f2ee;
	color: #2e2e2e;
  }
  
  .testimonial-card {
	background-color: #fff;
	transition: all 0.3s ease;
  }
  
  .testimonial-card blockquote {
	font-style: italic;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #555;
  }
  
  .testimonial-avatar {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #d7c4b6;
  }
  
 .section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: #D7C4B6;
  font-weight: 600;
}
  
  .section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1c1c1c;
  }
  
  /* === Dark Mode === */
  body.dark-mode .testimonial-section {
	background-color: #2c2c2c;
	color: #fff;
  }
  
  body.dark-mode .testimonial-card {
	background-color: #3a3a3a;
	color: #fff;
  }
  
  body.dark-mode .testimonial-card blockquote {
	color: #e0e0e0;
  }
  
  body.dark-mode .testimonial-avatar {
	border-color: #d5b89c;
  }
  
  body.dark-mode .section-subtitle {
	color: #d5b89c;
  }
  
  body.dark-mode .section-title {
	color: #ffffff;
  }

  
  .vision-section {
	background-color: #f6f2ed;
	color: #2e2e2e;
	overflow: hidden;
  }
  
  .vision-text h4 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #1c1c1c;
  }
  
  .vision-text p {
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
  }
  
  .vision-image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transform: scale(1);
	transition: transform 0.3s ease;
  }
  
  .vision-image img:hover {
	transform: scale(1.03);
  }
  
  /* === Dark Mode === */
  body.dark-mode .vision-section {
	background-color: #2b2b2b;
	color: #eaeaea;
  }
  
  body.dark-mode .vision-text h4 {
	color: #ffffff;
  }
  
  body.dark-mode .vision-text p {
	color: #dddddd;
  }
  
  body.dark-mode .vision-image img {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  }
  
  
  /* === Animation: fade-in-up === */
  .fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
  }
  
  .fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
  }
  
  

  body.dark-mode #qualitaet {
	background-color: #1e1e1e;
  }
  
  body.dark-mode #qualitaet .card {
	background-color: #2c2c2c;
	color: #fff;
  }
  
  body.dark-mode #qualitaet .section-title,
  body.dark-mode #qualitaet .section-subtitle,
  body.dark-mode #qualitaet p {
	color: #fff;
  }

  .text-accent {
	color: #8e6c4d;
  }
  
  body.dark-mode .card {
	background-color: #2b2b2b;
	color: #ffffff;
  }
  
  body.dark-mode .card .text-accent {
	color: #d5b89c;
  }
  
  body.dark-mode #qualitaet {
	background-color: #1f1f1f;
  }
  
  body.dark-mode #qualitaet .section-title,
  body.dark-mode #qualitaet .section-subtitle,
  body.dark-mode #qualitaet p {
	color: #fff;
  }

  body.login-color .navbar {
  background-color: #E8C5C9 !important;

  }

  body.login-color .section-subtitle{
  color: #000 !important;
 
}

  body.login-color #backToTopBtn {
  background-color: #E8C5C9 !important;

  }

  body.login-color .page-footer {
  background-color: #E8C5C9 !important;
  }

    body.login-color .footer-bottom {
  background-color: #FFEEEF !important;
  }
    body.login-color .contact-toggle {
  background-color: #FFEEEF !important;
  }

  body.login-color .navbar .nav-link {
	color: #fff !important;
}

  body.login-color .with-us-section {
	  background-color: #E8C5C9 !important;
}

body.login-color .btn-luca,
body.login-color .btn-primary {
  background-color: #E0BBBD !important;
}

body.login-color .btn-luca:active,
body.login-color .btn-primary:active {
	    background-color: #E0BBBD !important;

}

  body.login-color #verzicht {
	    background-color: #E0BBBD !important;

}

  body.login-color .brand-story h4 {
	    color: #E0BBBD !important;

}

  body.login-color .date-hero-section {
	  background-color: #E8C5C9 !important;
	  	background: linear-gradient(135deg, #E8C5C9, #E8C5C9);
}

body.login-color .navbar-nav .nav-item.active > .nav-link {
  color: rgba(255,255,255,1) !important;
  font-weight: 600;
}


  .quality-card .icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: rgba(191, 165, 140, 0.15); /* zarter Akzent */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem auto;
	font-size: 1.5rem;
	color: #a88c6b;
  }
  
  .quality-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .quality-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  body.dark-mode .quality-card {
	background-color: #2b2b2b;
	color: #fff;
  }
  
  body.dark-mode .icon-wrapper {
	background-color: rgba(255, 255, 255, 0.08);
	color: #d5b89c;
  }

  body.dark-mode .faq-section {
	background-color: #2a2a2a;
  }
  
  body.dark-mode .faq-section .card {
	background-color: #3a3a3a;
	color: #fff;
  }
  
  body.dark-mode .faq-section .card-header {
	background-color: transparent;
	border-bottom: none;
	color: #fff;
  }
  
  body.dark-mode .faq-section .card-body {
	color: #ddd;
  }
  

  .sustainability-image-wrapper {
	height: 200px;
	overflow: hidden;
	border-radius: 10px;
  }
  
  .sustainability-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
  }
  
  .hero-overlay {
	background: rgba(0, 0, 0, 0.4); /* Dunkle Maske */
	z-index: 1;
  }
  
  .hero-section .container {
	z-index: 2;
	position: relative;
  }
  

  body.dark-mode #asap p,
body.dark-mode #asap h2 {
  color: #ffffff !important;
}

body.dark-mode #verzicht p,
body.dark-mode #verzicht h5 {
  color: #ffffff !important;
}

body.dark-mode #asap p.section-subtitle,
body.dark-mode #verzicht p.section-subtitle {
  color: #ae8f6d !important;
}


body.dark-mode .section-subtitle {
	color: #ae8f6d !important;
  }
  

  body.dark-mode .text-darkmode {
	color: #f0f0f0 !important;
  }
  

  #imageSlider .slick-slide img {
	display: inline;
	height: 100px;
	object-fit: contain !important;
	width: auto !important;
	padding:
  2px;
  }

  body.dark-mode .text-darkmode {
	color: #fff !important;
}

body.dark-mode .section-subtitle,
body.dark-mode .section-title {
	color: #fff;
}

body.dark-mode #product-tabs  .section-subtitle,
body.dark-mode #product-tabs  .section-title {
	color: #fff;
}

body.dark-mode #product-tabs p {
	color: #fff !important;
}

body.dark-mode .nav-pills .nav-link {
	background: transparent;
	color: #ccc;
}

body.dark-mode .nav-pills .nav-link.active {
	background-color: #dbc1a3 !important;
	color: #fff !important;
}

body.login-color .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: #fff;
	background-color: #c39b9f !important; 
  }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: #fff;
	background-color: #dbc1a3 !important; 
  }

  body.login-color .testimonial-text .quote-icon {
  color: #E8C5C9 !important;
  font-size: 1.5rem;
}

body.login-color .carousel-indicators.lf-indicators li.active {
  background-color: #E8C5C9 !important;
  transform: scale(1.2);
}
body.login-color .carousel-indicators.lf-indicators li {
  background-color: #c39b9f !important;
  transform: scale(1.2);
}

body.login-color #header-count-articles, #header-count-articles-mobile {
  background: #c39b9f !important;
  color: #fff;
}

body.login-color .bg-luca {
  background: #c39b9f !important;
  color: #fff;
}

body.login-color .hero-section .section-subtitle{
  color: #fff !important;
}

body.login-color .dropdown-item:hover {
  background-color: #E8C5C9 !important;
  color: #8e6c4d !important;
}


  .footer-menu i.fab.fa-instagram {
	color: #C13584; /* Instagram-Farbe */
	transition: color 0.3s;
}

.footer-menu a:hover i.fab.fa-instagram {
	color: #9e2e6d;
}

@media (max-width: 991.98px) {
	#shopNavDropdown .dropdown-menu {
		display: none;
		position: static !important;
		box-shadow: none;
		border: none;
		width: 100%;
		padding: 0;
		background: transparent;
	}
	#shopNavDropdown.open .dropdown-menu {
		display: block;
	}
	#shopNavDropdown .dropdown-toggle::after {
		display: none;
	}
}

#shopNavDropdown .fa-chevron-down {
	transition: transform 0.18s;
}

/* Drehen, wenn offen */
#shopNavDropdown.open .fa-chevron-down {
	transform: rotate(-180deg);
}

.sidebar-footer{
  background-color: #fff;
}

body.dark-mode .shop-item-card {
  background: none;
}
body.dark-mode .shop-item-card .small{
  color: #fff
}
body.dark-mode .btn-like-circle{
  border: 1px solid #fff;
}
body.dark-mode .shop-item-card .fa-heart{
  color: #000;
}
body.dark-mode p{
  color: #fff;
}
body.dark-mode #loginButton{
  color: #000 !important;
}
body.dark-mode .sidebar-wrapper{
  background-color: #292929;
}
body.dark-mode .sidebar-footer{
  background-color: #1F1F1F;
}
body.dark-mode .sidebar-wrapper *{
  color: #fff;
}
body.dark-mode .form-control::placeholder {
  color: #fff;
}

html, body {
	min-height: 100vh;
}

.border-secondary {
  border-color: #D7C4B6 !important;
}

body.login-color .border-secondary {
	border-color: #E8C5C9 !important;
}

table, li, #date-picker-example {
  color: #000 !important;
}