/********** Template CSS **********/
:root {
  --bs-primary: #1f4e79;
  --bs-secondary: #d6b370;
  --bs-light: #f8f6f2;
  --bs-dark: #2f3437;
  --bs-success: #7a9e7e;
}

body {
  --font-size-large: 1.25rem; /* 20px */
  --font-size-middle: 1.125rem; /* 18px */
  --font-size-small: 1rem; /* 16px */
}

.text-primary {
  color: var(--bs-primary);
}
.text-secondary {
  color: var(--bs-secondary);
}
.text-light {
  color: var(--bs-light);
}
.text-dark {
  color: var(--bs-dark);
}
.text-highlight {
  color: var(--bs-highlight);
}
.text-success {
  color: var(--bs-success);
}

h1 {
  color: var(--bs-dark);
}

p {
  color: var(--bs-dark);
}

h2,
h3,
h5 {
  font-family: Georgia, serif;
  color: var(--bs-dark);
}

.text-icon-label {
  font-size: 0.6rem;
  text-align: center;
}

.kontur {
  -webkit-text-stroke: 0.3px var(--bs-primary);
  text-stroke: 0.3px var(--bs-primary);
}

.bg-dark {
  background-color: var(--bs-secondary);
}

.bg-primary {
  background-color: var(--bs-secondary);
}

.bg-success {
  background-color: var(--bs-success);
}

.bg-secondary {
  background-color: var(--bs-secondary);
}

a {
  color: var(--bs-light);
  text-decoration: none;
}

a:hover {
  color: var(--bs-secondary);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

.content-container {
  max-width: 1200px;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: var(--bs-primary);
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: var(--bs-secondary);
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--bs-dark);
}

.btn-primary {
  color: var(--bs-light);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  color: var(--bs-primary);
  background-color: var(--bs-secondary);
  border-color: var(--bs-primary);
}

.btn-light {
  color: var(--bs-primary);
  background-color: var(--bs-light);
  border-color: var(--bs-primary);
}

.btn-light:hover {
  color: var(--bs-light);
  background-color: var(--bs-secondary);
  border-color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--bs-dark);
}

.btn-banner {
  color: var(--bs-primary);
  background-color: var(--bs-secondary);
  border-color: var(--bs-primary);
}

.btn-banner:hover {
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.social-icon i {
  color: var(--bs-primary);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 27px;
}

.social-icon:hover i {
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  border-radius: 50%;
  border-color: var(--bs-secondary);
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
  top: -150px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding: 0;
  width: 170px;
  height: 80px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    width: 126px;
    height: 100px;
  }

  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 75px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar .dropdown-toggle {
  pointer-events: auto;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: none;
  z-index: 1;
}

.caption-box {
  background: color-mix(in srgb, var(--bs-light) 80%, transparent);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--bs-primary);
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--bs-dark);
  border: 15px solid var(--bs-dark);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }
  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .page-header-right {
    background-position: right center;
  }
}

#header-carousel .carousel-item {
  max-height: 500px;
  overflow: hidden;
}

.page-header {
  background:
    linear-gradient(rgba(31, 78, 121, 0.7), rgba(31, 78, 121, 0.7)),
    url(../images/) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-dark);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--bs-dark);
}

.breadcrumb-item a:hover {
  color: var(--bs-primary);
}

/*** Section Title ***/
.section-title {
  position: relative;
  margin-bottom: 0rem;
  padding-bottom: 1.5rem;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(25% - 13px);
  background: var(--dark);
  border: 10px solid #ffffff;
  border-radius: 28px;
  content: none;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

/*** Products ***/

.product {
  background: var(--bs-light);
  background-size: cover;
}

.product-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
  margin: 0 10px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  background: var(--bs-light);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  font-size: 25px;
  transition: 0.5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

/*** About ***/
.video {
  background:
    linear-gradient(rgba(136, 180, 78, 0.85), rgba(136, 180, 78, 0.85)),
    url(../img/video-bg.jpg) center center no-repeat;
  background-size: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 65px;
  height: 75px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 28px 30px 30px 38px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 13px;
  border-left: 40px solid var(--primary);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

.col-lg-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-lg-5 img.img-fluid {
  display: block;
}
```

/*** Store ***/
.store-item .store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(138, 180, 78, 0.3);
  opacity: 0;
  transition: 0.5s;
}

.store-item:hover .store-overlay {
  opacity: 1;
}

/*** Contact ***/
.contact .btn-square {
  width: 100px;
  height: 100px;
  border: 20px solid var(--bs-secondary);
  border-radius: 50px;
}

.bg-light {
  background-color: var(--bs-light);
}

/*** Testimonial ***/
.testimonial {
  background:
    linear-gradient(
      color-mix(in srgb, var(--bs-light) 85%, transparent),
      color-mix(in srgb, var(--bs-light) 85%, transparent)
    ),
    url(../images/HeaderGoaWeisserLangerStrand.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-item {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  background: var(--bs-light);
  border: 30px solid var(--bs-primary);
}

.testimonial-item img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
}

.testimonial-carousel .owl-dots {
  margin-top: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-primary);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-dark);
}

/*** Footer ***/
.footer {
  color: var(--bs-light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--bs-light);
  font-weight: normal;
  text-transform:;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--bs-primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--bs-primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer a {
  color: var(--bs-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--bs-primary);
}

.copyright {
  color: var(--bs-light);
}

.copyright {
  background: var(--bs-dark);
}

.copyright a {
  color: var(--bs-light);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--bs-secondary) !important;
}

/*** Gallery Grid ***/

body {
  min-height: 100vh;
  font: normal var(--font-size-middle) sans-serif;
  padding: 0;
}

.container.gallery-container {
  background-color: transparent;
  color: #35373a;
  min-height: auto;
  border-radius: 20px;
  box-shadow: 0;
}

.gallery-container p.page-description {
  text-align: center;
  max-width: 800px;
  margin: 25x auto;
  color: #888;
  font-size: 18px;
}

.feature-section {
  padding-top: 0rem;
  padding-bottom: 0rem;
  display: flex;
  align-items: center;
  background-color: var(--bs-primary);
}

.tz-gallery {
  padding: 40px;
}

.tz-gallery .lightbox img {
  width: 100%;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.tz-gallery .lightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.tz-gallery img {
  border-radius: 4px;
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .container.gallery-container {
    border-radius: 0;
  }
}

/*** Multi carousel Gallerie ***/
.multi-carousel-wrapper {
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.multi-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.multi-carousel-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  margin: 0;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.multi-carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.multi-carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.carousel-caption-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--bs-dark);
  background: color-mix(in srgb, var(--bs-light) 80%, transparent);
}

.multi-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--bs-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.multi-carousel-btn.prev {
  left: 10px;
}
.multi-carousel-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .multi-carousel-item {
    flex: 0 0 100%;
  }
}

/*** Glightbox ***/
.clone a {
  pointer-events: none;
}

/*** Accordeon F&Q ***/

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: var(--bs-light);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button {
  font-weight: bold;
}

/*** Accordeon nicht mehr in gebrauch 

.accordion {
  padding: 60px 5%;
  width: 100%;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: var(--bs-light);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  ***/

/*** List Detailsite ***/
.detail-list {
  padding: 0px 300px;
}

/*** Kontakt ***/
a.contact {
  color: var(--bs-light) !important;
  text-decoration: none;
}

a.contact:hover {
  color: var(--bs-secondary) !important;
}

a.contactsite {
  color: var(--bs-primary) !important;
  text-decoration: none;
}

a.contactsite:hover {
  color: var(--bs-secondary) !important;
}
