/*--------------------------------------------------------------
# Root & General
--------------------------------------------------------------*/
:root {
  --c-primary: #fa0a08;
  --c-dark: #151515;
  --c-white: #fff;
  --c-text: #444444;
  --c-muted: #3b3b3b;
  --c-body: #fdf8f3;
  --overlay: rgba(0, 0, 0, .6);
  --overlay-soft: rgba(0, 0, 0, .35);
  --shadow: 0 0 30px rgba(127, 137, 161, .25);
  --t-fast: .3s;
  --t-med: .4s;
  --radius: 4px;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--c-body);
  color: var(--c-text);
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--c-primary);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med);
}

.back-to-top i {
  font-size: 28px;
  color: var(--c-dark);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--c-dark);
}

.back-to-top:hover i {
  color: var(--c-primary);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--c-dark);
}

#preloader:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-30px, -0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid var(--c-primary);
  border-top-color: var(--c-dark);
  border-bottom-color: var(--c-dark);
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0)
  }

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

/*--------------------------------------------------------------
# Mobile AOS fix
--------------------------------------------------------------*/
@media (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 15px 0;
  transition: all .5s;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, .8);
}

#header .logo {
  font-size: 64px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--c-white);
}

#header .logo a span {
  color: var(--c-primary);
}

#header .logo img {
  max-height: 58px;
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  padding: 7px 25px;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
  color: var(--c-white);
  transition: background var(--t-fast), color var(--t-fast);
}

.get-started-btn:hover {
  background: var(--c-primary);
  color: #000;
}

@media (max-width:992px) {
  .get-started-btn {
    padding: 7px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--c-primary);
}

.navbar .dropdown ul {
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  min-width: 50px;
  z-index: 99;
  background: var(--c-white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  margin: 0 10px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: var(--c-primary);
}

.navbar .flag {
  width: 20px;
  height: 15px;
}

@media (max-width:1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile */
.mobile-nav-toggle {
  color: var(--c-white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: opacity .5s;
}

@media (max-width:991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 999;
  background: rgba(0, 0, 0, .9);
  transition: opacity var(--t-fast);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  overflow-y: auto;
  display: block;
  padding: 10px 0;
  background: var(--c-white);
  transition: all var(--t-fast);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--c-dark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--c-dark);
  background: var(--c-primary);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  background: var(--c-white);
  box-shadow: var(--shadow);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: var(--c-dark);
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background: var(--c-primary);
}

.navbar-mobile .global-icon {
  background: none;
  border: none;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  padding: 10px 20px;
}

.navbar-mobile .flag {
  width: 20px;
  height: 15px;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center / cover no-repeat;
}

#hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font: 700 56px/64px "Poppins", sans-serif;
  color: var(--c-white);
}

#hero h1 span {
  color: var(--c-primary);
}

#hero h2 {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  height: 100%;
  text-align: center;
  transition: all var(--t-fast);
  border: 1px solid rgba(255, 255, 255, .3);
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--c-primary);
}

#hero .icon-box h3 {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--c-white);
  transition: color var(--t-fast);
}

#hero .icon-box h3 a:hover {
  color: var(--c-primary);
}

#hero .icon-box:hover {
  border-color: var(--c-primary);
}

@media (min-width:1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width:768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  margin: 0 0 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font: 500 14px/1 "Poppins", sans-serif;
  color: #cb6169;
}

.section-title h2::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 1px;
  background: var(--c-primary);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font: 700 36px/1 "Poppins", sans-serif;
  text-transform: uppercase;
  color: var(--c-dark);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font: 700 28px "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  position: relative;
  padding: 0 0 8px 26px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 20px;
  color: var(--c-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: .5;
  filter: grayscale(100);
  transition: opacity var(--t-fast), filter var(--t-fast);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--c-primary);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--c-primary);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  min-height: 400px;
  background: center/cover no-repeat;
}

/*--------------------------------------------------------------
# Unsere Spezialitäten
--------------------------------------------------------------*/
@font-face {
  font-display: swap;
  font-family: Gloock;
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/Gloock-Regular.woff2) format("woff2"), url(/fonts/Gloock-Regular.woff) format("woff");
}

.font-Gloock {
  font-family: Gloock, serif;
}

.text-appGray-700 {
  color: rgb(69 64 64/var(--tw-text-opacity, 1));
}

.text-appGray-100 {
  color: rgb(224 224 224/var(--tw-text-opacity, 1));
}

.text-appBody {
  color: rgb(244 242 232/var(--tw-text-opacity, 1));
}

.text-white {
  color: #fff;
}

.bg-appAccent {
  background-color: rgb(164 138 99/var(--tw-bg-opacity, 1));
}

.bg-black\/50 {
  background-color: rgba(0, 0, 0, .5);
}

.bg-\[\#D9D9D9\] {
  background-color: #D9D9D9;
}

.border {
  border: 1px solid;
}

.border-appAccent {
  border-color: rgb(164 138 99/var(--tw-border-opacity, 1));
}

.border-appText {
  border-color: rgb(39 36 36/var(--tw-border-opacity, 1));
}

.uppercase {
  text-transform: uppercase;
}

.leading-none {
  line-height: 1;
}

.leading-\[1\.3\] {
  line-height: 1.3;
}

.tracking-\[-0\.41px\] {
  letter-spacing: -.41px;
}

.rounded-\[32px\] {
  border-radius: 32px;
}

.w-px {
  width: 1px;
}

.h-\[50px\] {
  height: 50px;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.duration-300 {
  transition-duration: .3s;
}

.homeSpecials--swiper {
  overflow: visible;
}

.homeSpecials--dayItem {
  width: 72px;
}

@media (min-width:1024px) {
  .homeSpecials--dayItem {
    width: 112px;
  }
}

.homeSpecials--gridItem:nth-of-type(5n+1) {
  grid-row: span 2/span 2;
}

.homeSpecials--gridItem:nth-of-type(5n+2) {
  aspect-ratio: 1.49;
}

@media (min-width:1024px) {
  .homeSpecials--gridItem:nth-of-type(5n+2) {
    aspect-ratio: 3.82;
  }
}

.homeSpecials--gridItem:nth-of-type(5n+3) {
  grid-row: span 2/span 2;
}

.homeSpecials--gridItem:nth-of-type(5n+5) {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}

@media (min-width:768px) {
  .homeSpecials--gridItem:nth-of-type(5n+5) {
    grid-row: span 1/span 1;
  }
}

.homeSpecials--gridItem:nth-of-type(5n+5)>div {
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.bcmsImage svg {
  width: 100%;
}

.swiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-backface-hidden .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  z-index: 1;
  box-sizing: content-box;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  transition-property: transform;
  display: block;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-max {
  max-width: max-content;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.p-2 {
  padding: .5rem;
}

.py-2\.5 {
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.z-10 {
  z-index: 10;
}

@media not all and (min-width:1024px) {
  .max-lg\:hidden {
    display: none;
  }
}

@media (min-width:1024px) {
  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:mb-\[18px\] {
    margin-bottom: 18px;
  }

  .lg\:mb-\[45px\] {
    margin-bottom: 45px;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:min-h-\[360px\] {
    min-height: 360px;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:h-24 {
    height: 6rem;
  }

  .lg\:w-8 {
    width: 2rem;
  }

  .lg\:h-8 {
    height: 2rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-\[32px\] {
    font-size: 32px;
    line-height: 1;
  }

  .lg\:leading-none {
    line-height: 1;
  }
}

.specials {
  padding: clamp(2rem, 5vw, 6rem) 0;
}

.specials .container {
  max-width: 1500px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.specials h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: .2px;
  margin-bottom: clamp(.75rem, 2vw, 1.25rem);
  text-transform: none;
}

.specials .content {
  max-width: 56ch !important;
  color: rgb(69 64 64 /.9);
  line-height: 1.6;
  text-transform: none;
  margin: 0 auto;
}

.specials .homeSpecials--swiper {
  overflow: visible;
  padding: .25rem 0;
}

.specials .homeSpecials--dayItem {
  width: auto;
}

.specials .homeSpecials--dayItem button {
  background: transparent;
  border-color: rgba(39, 36, 36, .25);
  color: rgb(39, 36, 36);
  cursor: pointer;
}

.specials .homeSpecials--dayItem .text-xs,
.specials .homeSpecials--dayItem .lg\:text-base {
  letter-spacing: 0;
}

.specials .homeSpecials--dayItem.swiper-slide-active button {
  background: rgb(164 138 99);
  color: #fff;
  border-color: transparent;
}

.specials .homeSpecials--dayItem button:hover {
  background: rgba(164, 138, 99, .1);
}

.specials .homeSpecials--dayItem button:focus-visible {
  outline: 2px solid rgba(164, 138, 99, .65);
  outline-offset: 2px;
}

.specials .grid {
  grid-template-columns: 1fr;
  gap: clamp(.75rem, 2vw, 1.25rem);
}

@media (min-width:768px) {
  .specials .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.specials .homeSpecials--gridItem {
  min-height: clamp(240px, 35vw, 360px);
  overflow: hidden;
}

.specials .homeSpecials--gridItem .bg-black\/50 {
  background-color: var(--overlay-soft);
}

.specials h3 {
  font-size: clamp(.95rem, 2.8vw, 2rem) !important;
  line-height: 1.1 !important;
  margin-bottom: clamp(.25rem, 1.8vw, .9rem) !important;
  text-transform: none !important;
  text-align: left;
}

.specials .bcmsImage img {
  transition: transform .5s ease;
}

.specials .homeSpecials--gridItem:hover .bcmsImage img {
  transform: scale(1.03);
}

.specials .max-w-max.mx-auto.my-6 {
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.specials .w-px.h-\[50px\] {
  height: 28px;
}

@media (min-width:1024px) {
  .specials .lg\:h-24 {
    height: 48px;
  }
}

.specials svg[viewBox="0 0 48 48"] {
  opacity: .9;
}

/*--------------------------------------------------------------
# Mobile-specific image adjustments
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .bcmsImage.cover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: auto; 
    margin: 0;
    overflow: hidden; 
    border-radius: 0; 
  }

  .bcmsImage.cover img {
    width: 100%;
    height: auto;
    object-fit: cover; /
  }

  
  .specials .grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    justify-items: center; 
  }

  .homeSpecials--gridItem {
    width: 100% !important; 
    height: auto !important; 
    grid-row: auto !important;
    grid-column: auto !important;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: var(--c-white);
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.services .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  border-radius: var(--radius);
  transition: transform var(--t-fast);
}

.services .icon-box .icon i {
  color: var(--c-dark);
  font-size: 28px;
  transition: transform var(--t-fast);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: var(--c-dark);
  transition: color var(--t-fast);
}

.services .icon-box h4 a:hover {
  color: #ff7900;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .icon-box:hover {
  border-color: var(--c-white);
  box-shadow: 0 0 25px rgba(0, 0, 0, .1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 5px;
  padding: 8px 15px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-text);
  border-radius: 3px;
  transition: all var(--t-fast);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--c-dark);
  background: var(--c-primary);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--t-fast);
  background: rgba(21, 21, 21, .6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, .6);
  opacity: 0;
  z-index: 2;
  transition: opacity var(--t-fast);
}

.portfolio .portfolio-wrap img {
  transition: transform var(--t-fast);
}

.portfolio .portfolio-wrap .portfolio-info {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--c-white);
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--c-white);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: color var(--t-fast);
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--c-primary);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--c-white);
  opacity: 1;
  border: 1px solid var(--c-primary);
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--c-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0 0 30px rgba(21, 21, 21, .08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--c-dark);
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: var(--c-primary);
  float: left;
}

.counts .content .count-box span {
  display: block;
  margin-left: 50px;
  font-size: 36px;
  line-height: 30px;
  font-weight: 700;
  color: var(--c-dark);
}

.counts .content .count-box p {
  padding: 15px 0 0;
  margin: 0 0 0 50px;
  font: 14px "Raleway", sans-serif;
  color: var(--c-muted);
}

.counts .content .count-box a {
  display: block;
  margin-top: 20px;
  font: 600 15px "Poppins", sans-serif;
  color: var(--c-muted);
  transition: color var(--t-fast);
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  min-height: 400px;
  background: url("../img/counts-img.jpg") center/cover no-repeat;
}

@media (max-width:991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width:667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  background: url("../img/testimonials-bg.jpg") center/cover no-repeat;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--c-white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, .15);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: var(--c-white);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, .6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, .4);
  opacity: .5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--c-primary);
  opacity: 1;
}

@media (min-width:1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width:992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: var(--c-white);
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--c-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  opacity: 0;
  text-align: center;
  transition: all var(--t-fast);
}

.team .member .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .8);
  color: #484848;
  transition: all var(--t-fast);
}

.team .member .social a:hover {
  color: var(--c-dark);
  background: var(--c-primary);
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

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

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--c-dark);
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info,
.contact .php-email-form {
  width: 100%;
  background: var(--c-white);
}

.contact .info i {
  font-size: 20px;
  background: var(--c-primary);
  color: var(--c-dark);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--t-fast);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--c-dark);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.php-email-form .error-message {
  display: none;
  color: var(--c-white);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .successfully-message {
  display: none;
  color: var(--c-white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--c-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0)
  }

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

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: var(--radius);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--c-primary);
}

.contact .php-email-form button[type=submit] {
  background: var(--c-primary);
  border: 0;
  padding: 10px 24px;
  color: var(--c-dark);
  border-radius: var(--radius);
  transition: background var(--t-fast);
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
}

@media (max-width:992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# CookieBanner
--------------------------------------------------------------*/
#cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .8);
  color: var(--c-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  display: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

#cookie-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#cookie-banner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#cookie-banner a {
  color: var(--c-primary);
  text-decoration: none;
}

#cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  border-radius: 5px;
  transition: background var(--t-fast);
}

.cookie-button.accept {
  background: var(--c-primary);
  color: var(--c-white);
}

.cookie-button.accept:hover {
  background: #e66c00;
}

.cookie-button.reject {
  background: transparent;
  color: var(--c-white);
  border: 1px solid var(--c-white);
}

.cookie-button.reject:hover {
  background: rgba(0, 0, 0, .05);
}

@media (max-width:768px) {
  #cookie-banner {
    width: 90%;
    padding: 15px;
  }

  #cookie-banner h2 {
    font-size: 1.3rem;
  }

  #cookie-banner p {
    font-size: .9rem;
  }

  .cookie-button {
    font-size: .85rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px;
  color: var(--c-white);
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222;
  padding: 60px 0 30px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--c-primary);
}

#footer .footer-top .footer-info p {
  font: 14px/24px "Raleway", sans-serif;
  color: var(--c-white);
  margin: 0;
}

#footer .footer-top .social-links a {
  display: inline-block;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 1;
  margin-right: 4px;
  padding: 8px 0;
  font-size: 18px;
  border-radius: var(--radius);
  background: #292929;
  color: var(--c-white);
  transition: background var(--t-fast), color var(--t-fast);
}

#footer .footer-top .social-links a:hover {
  background: var(--c-primary);
  color: var(--c-dark);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--c-primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--c-white);
  line-height: 1;
  transition: color var(--t-fast);
  display: inline-block;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--c-primary);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--c-white);
  padding: 6px 10px;
  position: relative;
  border-radius: var(--radius);
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: var(--c-primary);
  color: var(--c-dark);
  font-size: 16px;
  padding: 0 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--t-fast);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--c-white);
}



/*--------------------------------------------------------------
# Info
--------------------------------------------------------------*/
#my-gallery {
  --gap: 1rem;
  --card-radius: 0.75rem;
  --shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  --transition: 0.4s ease;
}

/* Galerie-Container */
#my-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Karten-Styling border-radius: var(--card-radius); */
#my-gallery .card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
#my-gallery .card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Bild-Styling (Größe: 800x600px, Aspect Ratio angepasst auf 4/3) */
#my-gallery .card img {
  display: block;
  width: 100%;
   /* geändert von 3/2 auf 4/3 für 800x600px */
  object-fit: cover;
  transition: transform var(--transition);
  will-change: transform;
}
#my-gallery .card:hover img {
  transform: scale(1.1);
}

/* Overlay-Text */
#my-gallery .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}
#my-gallery .card:hover .overlay {
  opacity: 1;
}
