/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #4b4b4b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #4b4b4b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #53524f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ebe7e1; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #4b4b4b;  /* The default color of the main navmenu links */
  --nav-hover-color: #53524f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #4b4b4b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #53524f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #524949;
  --default-color: #ffffff;
  --heading-color: #53524f;
  --accent-color: #53524f;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #524949;
  --default-color: #eee8df;
  --heading-color: #eee1b8;
  --accent-color: #f8f2e8;
  --surface-color: #aeaeae;
  --contrast-color: #6d5838;
}

.fill-custom {
  --background-color: #fcfbf9;
  --default-color: #524949;
  --heading-color: #524949;
  --accent-color: #f8f2e8;
  --surface-color: #e6dfd2;
  --contrast-color: #6d5838;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--default-font-size);
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  overflow: hidden;
}

.hero .fashion-hero-slider {
  height: 100vh;
  min-height: 600px;
}

.hero .fashion-hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero .fashion-hero-slider .swiper-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero .hero-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .hero .overlay-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  }
}

.hero .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero .slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .content-wrapper {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .content-wrapper {
    text-align: center;
    padding: 0 1rem;
  }
}

.hero .brand-tagline {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .hero .brand-tagline {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--contrast-color);
}

@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.hero .cta-section {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero .cta-section {
    margin-top: 3rem;
  }
}

.hero .primary-cta {
  display: inline-block;
  background-color:white;
  color: var(--default-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .primary-cta:hover {
  background-color:white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero .primary-cta {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .hero .primary-cta {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

.hero .navigation-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero .navigation-controls {
    display: none;
  }
}

.hero .nav-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--default-color);
  font-size: 1.25rem;
  pointer-events: all;
}

.hero .nav-arrow:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

@media (min-width: 1200px) {
  .hero .nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero .fashion-hero-slider {
    height: 80vh;
    min-height: 500px;
  }

  .hero .swiper-slide {
    height: 80vh;
    min-height: 500px;
  }
}

/*--------------------------------------------------------------
# Unternehmen Header Section
--------------------------------------------------------------*/
.unternehmen-header .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.unternehmen-header .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.unternehmen-header .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.unternehmen-header .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.unternehmen-header .feature-box:hover {
  transform: translateY(-10px);
}

.unternehmen-header .feature-box:hover:before {
  height: 100%;
}

.unternehmen-header .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.unternehmen-header .feature-box .icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.unternehmen-header .feature-box .icon-container img {
  width: 100px;
  border-radius: 50%;
}

.unternehmen-header .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.unternehmen-header .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .unternehmen-header .section-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .unternehmen-header .section-heading {
    font-size: 1.8rem;
  }

  .unternehmen-header .feature-box {
    padding: 1.8rem 1rem;
  }

  .unternehmen-header .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Content Familie Section
--------------------------------------------------------------*/
.content-familie .features-stack .feature-row {
  margin-bottom: 4rem;
}

.content-familie .features-stack .feature-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .content-familie .features-stack .feature-row {
    margin-bottom: 3rem;
  }
}

.content-familie .features-stack .media-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.content-familie .features-stack .media-wrapper::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.content-familie .features-stack .media-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-familie .features-stack .media-wrapper:hover img {
  transform: scale(1.05);
}

.content-familie .features-stack .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%), color-mix(in srgb, var(--accent-color), transparent 40%));
  color: var(--contrast-color);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.content-familie .features-stack .icon-box i {
  transition: transform 0.3s ease;
}

.content-familie .features-stack .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.content-familie .features-stack .icon-box:hover i {
  transform: scale(1.1);
}

.content-familie .features-stack h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.content-familie .features-stack p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.content-familie .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.content-familie .action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.content-familie .action-btn:hover i {
  transform: translateX(5px);
}

.content-familie .action-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .content-familie .features-stack .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .content-familie .features-stack h3 {
    font-size: 1.3rem;
  }

  .content-familie .features-stack p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .content-familie .features-stack .feature-row {
    margin-bottom: 2.5rem;
  }

  .content-familie .features-stack .icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .content-familie .features-stack h3 {
    font-size: 1.2rem;
  }

  .content-familie .features-stack .action-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Content Firma Section
--------------------------------------------------------------*/
.content-firma {
  padding-top: 60px;
  padding-bottom: 58px;
}

.content-firma .additional-services .service-card {
  background: var(--surface-color);
  transition: all 0.4s ease;
}

.content-firma .additional-services .service-card .card-image {
  overflow: hidden;
}

.content-firma .additional-services .service-card .card-image img {
  height: auto;
  transition: transform 0.4s ease;
}

.content-firma .additional-services .service-card .card-body {
  padding: 1.6rem 1.4rem;
  min-height: 500px;
}

.content-firma .additional-services .service-card .card-body h5 {
  font-size: 1.375rem;
  font-weight: 400;
}

.content-firma .additional-services .service-card .card-body h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-firma .additional-services .service-card .card-body h5 a:hover {
  color: var(--accent-color);
}

.content-firma .additional-services .service-card .card-body p {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.content-firma .additional-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.content-firma .additional-services .service-card:hover .card-image img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .content-firma {
    padding: 80px 0;
  }

  .content-firma .intro-content {
    margin-bottom: 3rem;
  }

  .content-firma .additional-services .service-card .card-body {
    padding: 2rem 1.5rem;
  }
}