/*=================================================================================

   CLEAN Stylesheet for krabbenhoeft.pro
   Nur die wirklich benötigten Styles
   Original: 87 KB / 4172 Zeilen
   Clean: ~30 KB / ~1500 Zeilen
	
===================================================================================*/

/* =================================== */
/*  1. Basic Style 
/* =================================== */
body, html {
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

body {
  background: #9E7A68;
  color: #4c4d4d;
  font-family: 'Roboto', sans-serif;
}

/*-------- Preloader --------*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999999 !important;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.preloader .lds-ellipsis {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  top: 50%;
  left: 50%;
}

.preloader .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.preloader .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.preloader .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.preloader .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.preloader .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

.preloader.preloader-pantone {
  background-color: #9E7A68;
}

.preloader.preloader-pantone .lds-ellipsis div {
  background-color: #fff;
}

.preloader .pantone-color-year {
  display: block;
  position: absolute;
  background-image: url('../images/pantone COTY_150.png');
  background-size: 75px 75px;
  background-repeat: no-repeat;
  width: 75px;
  height: 75px;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/*--- Basics II ----*/
::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

form {
  padding: 0;
  margin: 0;
  display: inline;
}

img {
  vertical-align: inherit;
}

a, a:focus {
  color: #252b33;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover, a:active {
  color: #A47967;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:focus, a:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button:focus,
button:active {
  outline: none;
}

p {
  line-height: 1.2;
}

.hero-content p {
  line-height: 1.2;
  font-family: 'Caveat', serif;
  font-size: 1.2rem;
  font-size: 20px;
  font-weight: 400 !important;
}

blockquote {
  padding: 10px 20px;
}

iframe {
  border: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Caveat', serif;
  color: #252b33;
}

.modal-title h4, h5 {
  font-family: 'Roboto', serif;
  color: #252b33;
}

.modal-body h4, h5 {
  font-family: 'Roboto', serif;
  color: #252b33;
}

h6 {
  font-size: 16px !important;
  font-size: 1rem !important;
}

@media (max-width: 575.98px) {
  h6 {
    font-size: 16px !important;
    font-size: 1rem !important;
  }
}

/* =================================== */
/*  2. Helpers Classes
/* =================================== */
/* Box Shadow */
.shadow-md {
  -webkit-box-shadow: 0px 0px 50px -35px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0px 0px 50px -35px rgba(0, 0, 0, 0.4) !important;
}

/* Border Radius */
.rounded-lg {
  border-radius: 0.6rem !important;
}

/* Text Size */
.text-0 {
  font-size: 11px !important;
  font-size: 0.6875rem !important;
}

.text-1 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
}

.text-2 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.text-3 {
  font-size: 16px !important;
  font-size: 1rem !important;
}

.text-4 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
}

/* Font Weight */
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

/* Background Colors */
.bg-light {
  background-color: #ffffff !important;
}

.bg-dark {
  background-color: #111418 !important;
}

.bg-pantone {
  background-color: #9E7A68 !important;
}

.color-pantone {
  color: #9E7A68 !important;
}

.text-pantone {
  color: #9E7A68!important;
}

/* =================================== */
/*  3. Layouts
/* =================================== */
#main-wrapper {
  background: #fff;
}

.section {
  position: relative;
  padding: 80px 0;
  padding: 4.5rem 0;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/*== Scroll Down Arrow ==*/
.scroll-down-arrow {
  position: absolute;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  bottom: 50px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.scroll-down-arrow .animated {
  position: relative;
  animation: fadeInDown 1.5s infinite;
  -webkit-animation: fadeInDown 1.5s infinite;
  -moz-animation: fadeInDown 1.5s infinite;
  -o-animation: fadeInDown 1.5s infinite;
}

@keyframes fadeInDown {
  0% {
    top: -25px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}

/*== Scroll Up Arrow ==*/
.scroll-up-arrow {
  position: absolute;
  z-index: 3;
  bottom: 0px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.scroll-up-arrow .animated {
  position: relative;
  animation: fadeInUp 1.5s infinite;
  -webkit-animation: fadeInUp 1.5s infinite;
  -moz-animation: fadeInUp 1.5s infinite;
  -o-animation: fadeInUp 1.5s infinite;
}

@keyframes fadeInUp {
  0% {
    top: 10px;
    opacity: 0;
  }
  100% {
    top: -25px;
    opacity: 1;
  }
}

/*== Statement Position==*/
.statement {
  position: absolute;
  padding-right: 0em;
}

.statement-top {
  position: absolute;
  padding-right: 2em;
  top: 4em !important;
}

.statement-bottom {
  position: absolute;
  padding-right: 2em;
  bottom: 4em !important;
}

@media (max-width: 777.98px) {
  .statement-bottom {
    position: absolute;
    padding-right: 1em;
    bottom: 6em !important;
  }
}

/*== Magazin Layout==*/
.magazin-small {
  max-width: 380px;
}

.magazin-medium {
  max-width: 480px;
}

.magazin-big {
  max-width: 580px;
}

.magazin-big span {
  font-style: italic;
}

.hashtag-small {
  max-width: 300px;
}

@media (max-width: 777.98px) {
  .hashtag-small {
    max-width: 500px;
  }
}

/*== Spacing ==*/
.spacer-small {
  padding-top: 2em !important;
}

@media (max-width: 575.98px) {
  .spacer-small {
    padding-top: 1em !important;
  }
}

.spacer-medium {
  padding-top: 4em !important;
}

@media (max-width: 575.98px) {
  .spacer-medium {
    padding-top: 2em !important;
  }
}

.spacer-large {
  padding-top: 6em !important;
}

@media (max-width: 575.98px) {
  .spacer-large {
    padding-top: 4em !important;
  }
}

.spacer-end {
  padding-bottom: 4em !important;
}

@media (max-width: 575.98px) {
  .spacer-end {
    padding-bottom: 5em !important;
  }
}

/* =================================== */
/*  4. Header
/* =================================== */
#header {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#header .navbar {
  padding: 0px;
}

#header .logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.primary-menu {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: auto !important;
  -webkit-box-ordinal-group: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}

.primary-menu.bg-transparent {
  box-shadow: none;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}

.primary-menu.sticky-on {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1020;
  left: 0;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -webkit-animation: slide-down 0.7s;
  -moz-animation: slide-down 0.7s;
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================================== */
/*  5. Elements
/* =================================== */

/*=== 5.6 Hero Background ===*/
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-wrap .hero-mask, .hero-wrap .hero-bg, .hero-wrap .hero-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* Hero Background Video */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback: Poster als Background wenn Video nicht lädt */
.hero-bg-video[poster] {
  background-image: var(--poster-url);
  background-size: cover;
  background-position: center;
}

/* =================================== */
/*  Parallax Background Images mit WebP Fallback
/* =================================== */

.hero-bg.parallax-hero-01 {
  background-image: url('../images/hero-0.jpg'); /* Fallback */
  background-image: url('../images/hero-01.webp'); /* WebP override */
}

.hero-bg.parallax-hero-02 {
  background-image: url('../images/hero-02.jpg'); /* Fallback */
  background-image: url('../images/hero-02.webp'); /* WebP override */
}

.hero-bg.parallax-hero-03 {
  background-image: url('../images/hero-03.jpg'); /* Fallback */
  background-image: url('../images/hero-03.webp'); /* WebP override */
}

.hero-bg.parallax-hero-04 {
  background-image: url('../images/hero-04.jpg'); /* Fallback */
  background-image: url('../images/hero-04.webp'); /* WebP override */
}


.hero-bg.parallax-hero-05 {
  background-image: url('../images/hero-05.jpg'); /* Fallback */
  background-image: url('../images/hero-05.webp'); /* WebP override */
}



.hero-wrap .hero-mask {
  z-index: 1;
}

.hero-wrap .hero-content {
  position: relative;
  z-index: 3;
}

.hero-wrap .hero-bg {
  z-index: 0;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  transition: background-image 300ms ease-in 200ms;
}

.hero-wrap .hero-bg.hero-bg-scroll {
  background-attachment: scroll;
}


.hero-title h1 {
  
}


@media (max-width: 575.98px) {
 .hero-title h1 {
  line-height: 1.2;
  font-family: 'Caveat', serif;
  font-size: 0.9rem;
  font-size: 16px;
  font-weight: 400 !important;
  }
}



@media (max-width: 991.98px) {
  .hero-wrap .hero-bg {
    background-attachment: initial !important;
    background-position: center center !important;
  }
}

/*=== 5.7 Owl Carousel ===*/
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  border-color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}

.owl-theme .owl-dots .owl-dot.active span:after, .owl-theme .owl-dots .owl-dot:hover span:after {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}

/* =================================== */
/*  6. Footer
/* =================================== */
#footer {
  background: #fff;
  color: #252b33;
  padding: 16px 0px;
  padding: 1rem 0;
}

#footer .nav .nav-item {
  display: inline-block;
  line-height: 12px;
  margin: 0;
}

#footer .nav .nav-item .nav-link {
  color: #252b33;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#footer .nav .nav-item .nav-link:focus {
  color: #d63384;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#footer .nav .nav-link:hover {
  color: #d63384;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#footer.footer-text-light {
  color: rgba(250, 250, 250, 0.8);
}

#footer.footer-text-light .nav .nav-item .nav-link {
  color: rgba(250, 250, 250, 0.8);
}

#footer.footer-text-light .nav .nav-item .nav-link:hover {
  color: #fafafa;
}

body:not(.rtl) #footer .nav .nav-item:first-child .nav-link {
  padding-left: 0px;
}

body:not(.rtl) #footer .nav .nav-item:last-child .nav-link {
  padding-right: 0px;
}

/*=== 6.1 Social Icons ===*/
.social-icons {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.social-icons li {
  margin: 2px 6px;
  padding: 0;
  overflow: visible;
}

.social-icons li a {
  display: block;
  height: 26px;
  line-height: 26px;
  width: 26px;
  font-size: 18px;
  text-align: center;
  color: #4d555a;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.social-icons li i {
  line-height: inherit;
}

.social-icons.social-icons-lg li a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 22px;
}

.social-icons.social-icons-light li a {
  color: #eee;
}

.social-icons li:hover a {
  color: #999;
}

.social-icons li:hover.social-icons-linkedin a {
  color: #0E76A8;
}

.social-icons li:hover.social-icons-xing a {
  color: #126567;
}

.social-icons li:hover.social-icons-slack a {
  color: #E01E5A;
}

body:not(.rtl) .social-icons li:first-child {
  margin-left: 0px;
}

body:not(.rtl) .social-icons li:last-child {
  margin-right: 0px;
}

/* =================================== */
/*  Extras - Bootstrap overrides
/* =================================== */
.btn {
  padding: 0.8rem 2.6rem;
  font-weight: 500;
  border-width: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-sm {
  padding: 0.5rem 1rem;
}

.btn:not(.btn-link) {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.btn:not(.btn-link):hover {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 575.98px) {
  .btn:not(.btn-sm) {
    padding: .810rem 2rem;
  }
}

.bg-primary {
  background-color: #d63384 !important;
}

.text-primary, .btn-light, .btn-outline-light:hover, .btn-link {
  color: #9E7A68 !important;
}

.btn-link:hover {
  color: #bf2672 !important;
}

.text-light {
  color: #dee3e4 !important;
}

.btn-outline-primary {
  background-color: #9E7A68;
  color: #fff;
  border-color: #fff;
}

.btn-outline-primary:hover {
  background-color: #C09482;
  border-color: #ffffff;
  color: #fff;
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
  background-color: #C09482;
  color: #fff;
  border-color: #fff;
}

.btn-dark {
  background-color: #000;
  border-color: #000;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

/* Typography - Used in content sections */
.text-center {
  text-align: center;
}

/* Smooth scroll behavior */
.smooth-scroll {
  cursor: pointer;
}