/* Page Style */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/css/Roboto-Light.woff2") format("woff2"),
       url("/css/Roboto-Light.woff") format("woff");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/css/Roboto-Regular.woff2") format("woff2"),
       url("/css/Roboto-Regular.woff") format("woff");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/css/Roboto-Bold.woff2") format("woff2"),
       url("/css/Roboto-Bold.woff") format("woff");
}

:root {
  --bg: #ffffff;
  --green: #60efa6;
  --black: #141414;
  --white: #fff;
  --headline-font: "Roboto", sans-serif;
  --text-font: "Roboto", sans-serif;
}

/* Helper-Klassen */
.rg-1 { row-gap: 0.5rem; }
.rg-2 { row-gap: 1rem; }
.rg-3 { row-gap: 1.5rem; }
.rg-4 { row-gap: 2rem; }
.rg-5 { row-gap: 2.5rem; }
.rg-6 { row-gap: 3rem; }
.rg-7 { row-gap: 3.5rem; }
.rg-8 { row-gap: 4rem; }
.rg-9 { row-gap: 4.5rem; }
.rg-10 { row-gap: 5rem; }

.row-space-evenly{
  justify-content: space-evenly;
}

.dp-none{
  display: none!important;
}

/* Helper-Klassen Ende */

body {
  font-family: var(--text-font);
  background: var(--bg);
  color: var(--black);
  font-size: 1rem;
}

h1 {
  color: var(--black);
  font-family: var(--headline-font);
  font-size: 2.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h2 {
  color: var(--black);
  font-family: var(--headline-font);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

h3 {
  color: var(--black);
  font-family: var(--headline-font);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h4 {
  color: var(--black);
  font-family: var(--text-font);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

a {
  color: var(--black);
  transition: 0.6 all ease-in-out;
  text-decoration: none;
}

a:hover {
  color: var(--black);
  text-decoration: underline;
}

.navbar .logo{
  width: 350px;
  transition: all .5s ease-in-out;
}

nav.navbar.navbar-expand-xl.bg-body-tertiary {
    background: #f8f3f0 !important;
}

.navbar.nav-bg .logo{
  width: 200px;
}
.navbar .navbar-nav .nav-item{
  padding: 0 2rem;
}
.navbar .navbar-nav .nav-link{
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding:0;
  position: relative;
}

.navbar .navbar-nav .nav-link:hover{
  text-decoration: none;
}

.navbar .navbar-nav .nav-link::after{
  content:"";
  height:2px;
  background: var(--bs-nav-link-color);
  width: 0;
  transition: all .5s ease-in-out;
  position: absolute;
  bottom: -2px;
  left:0;
}

.navbar .navbar-nav .nav-link.nav-active::after{
  width: 100%;
}

.navbar .navbar-nav .nav-link:hover::after{
  width: 100%;
  color: var(--black);
}

.navbar button.navbar-toggler {
  border: 0;
  font-size: 2rem;
  color: var(--black);
  outline: none!important;
}

.wrapper {
  overflow: hidden;
}

.sidenav{
  position: fixed;
  background: #f0e5df;
  z-index: 1100;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  height: 100dvh;
  transition: all .5s ease-in-out;
}

.sidenav.open{
  right:0;
}

.sidenav .sidenav-inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.sidenav .sidebar-logo {
  /* filter: brightness(0) invert(1); */
  display: none;
}

.sidenav .sidebar-logo img{
  width: 100%;
  max-width: 350px;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.sidenav .sidenav img.logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 4rem;
}

.sidenav button.sidenav-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 2rem;
}

.sidenav li.nav-item {
  display: flex;
  justify-content: center;
}

.sidenav .nav-link{
  color: var(--black);
  text-decoration: none!important;
  position: relative;
  font-size: 1.5rem;
}

.sidenav .nav-link:hover{
  text-decoration: none;
}

.sidenav .navbar-nav{
  margin-left: auto;
  margin-right: auto;
}

.sidenav .nav-link::after{
  content:"";
  height: 2px;
  background: var(--black);
  width: 0;
  transition: all .5s ease-in-out;
  position: absolute;
  bottom: 5px;
  left:0;
}

.sidenav .nav-link.nav-active::after{
  width: 100%;
}

.sidenav .nav-link:hover::after{
  width: 100%;
  color: var(--white);
}

.owl-nav {
  position: relative;
  z-index: 10000000;
}

button.owl-prev {
  position: absolute;
  right: 58px;
  top: 45px;
  font-size: 50px;
  transform: translateY(-50%);
  outline: none !important;
}

button.owl-next {
  position: absolute;
  right: 15px;
  top: 45px;
  font-size: 50px;
  transform: translateY(-50%);
  outline: none !important;
}

button.owl-prev > span,
button.owl-next > span {
  font-size: 80px;
}

@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1420px;
  }
}

.iq-hr {
  background: black;
  width: 100%;
  height: 5px !important;
  opacity: 1;
}

.iq-hr-small {
  background: black;
  width: 100%;
  height: 2px !important;
  opacity: 1;
}

a.iq-link {
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
}

a.iq-link i {
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

a.iq-link:hover i {
  margin-left: 20px;
}

a.iq-link.iq-link-hover i{
  margin-left: 20px;
}


.breadcrumbs {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  font-size: 1.5rem;
  color: var(--black);
  flex-wrap: wrap;
}

.breadcrumbs a{
  color: var(--black);
}

.breadcrumbs a:last-of-type {
  font-weight: bold;
}

.breadcrumbs i{
  font-size: 1.0rem;
}
/* Footer */

.footer {
  margin-top: 2rem;
  background-color: #191919;
  color: #fff;
  padding: 5rem 1rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 300;
}

.footer .footer-logo{
  filter: brightness(0) invert(1);
}

h3.footer-headline {
color: #000000;
    font-weight: 300;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer .same-width{
    width: 20px;
    margin-right: .5rem;
    display: inline-flex;
    justify-content: center;
}

.footer i {
  width: 25px;
}

a.footer-news-link {
  display: block;
  border-bottom: 1px solid gray;
  padding: 6px;
  margin-bottom: 5px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.btn.btn-main{
  font-size: 1.125rem;
  padding: 0.5rem 2rem;
  font-weight: 600;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  border-radius: 0;
  transition: all .5s ease-in-out;
}

.btn.btn-main:hover{
  background: var(--black);
  color:var(--white);
  text-decoration: none;
}

/* Artikel Style */

section.header {
  padding: 3rem;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

section.header a.News-Header {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  bottom: -111px;
  right: 10rem;
  background: black;
  font-size: 1.65rem;
  width: 350px;
  text-align: center;
  padding: 2rem 2rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: 1s all ease-in-out;
}

section.header a.News-Header:hover{
  color: var(--white);
}

section.header a.News-Header.show{
  bottom: 0px;
}

section.header .header-text {
  width: 100%;
}

section.header .header-text .image-header {
  width: 100%;
  margin: auto;
  display: block;
}

section.std {
  margin: 6rem 0;
}

section.artikel-image-video {
  margin: 6rem 0;
}

section.artikel-image-video video.video {
  width: 100%;
  border-radius: 20px;
}

section.artikel-image-video img.image {
  width: 100%;
  margin: 2rem 0;
}

section.artikel-image-video .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
}

section.artikel-image-video .owl-dots .owl-dot span{
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--white);
  opacity: .5;
  transition: all .5s ease-in-out;
  border-radius: 50%;
}

section.artikel-image-video .owl-dots .owl-dot.active span{
  opacity: 1;
}

section.artikel-image-video h2 {
  color: var(--black);
}

section.artikel-image-video a {
  color: var(--black);
}

section.shop-info{
  position: relative;
  background-color: var(--gold);
  padding: 6rem 0;
}

section.shop-info::before{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 25px solid var(--white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section.shop-info .info-box {
  text-align: center;
}
section.shop-info .info-box i{
  font-size: 3rem;
}

section.shop-info .info-box h3{
  color: var(--black);
  margin-top: .70rem;
  margin-bottom: .70rem;
  font-weight: 600;
}

section.header-section{
    background: #fdf9f9;
}

section.header-section .image-header{
    aspect-ratio: 1000 / 500;
}

section.header-section .image-header img{
    height:100%;
    object-fit: cover;
}

section.header-section .padding-header-text {
    padding: 3rem;
    text-align: left;
}

section.boxen {
    margin: 5rem 0;
}

section.boxen .box {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.boxen .box .text{
  text-align: center;
  padding: 1.5rem
}

/* --- Fein abgestimmte Logo-Farben --- */
/* 1. leicht aufgehelltes Logo-Rot  */
section.boxen .col-xl-3:nth-child(1) .box {
    background-color: #f8f3f0;   /* ~30 % heller als #e31e24 */
    color: #202020;              /* Weiß bleibt hier gut lesbar */
}

/* 2. Logo-Gelb, nur minimal heller */
section.boxen .col-xl-3:nth-child(2) .box {
    background-color: #f9d3b8;   /* +10 % Weiß */
    color: #202020;                 /* dunkle Schrift für Kontrast */
}

/* 3. Logo-Grün, ebenfalls leicht aufgehellt */
section.boxen .col-xl-3:nth-child(3) .box {
    background-color: #faaa7a;   /* +10 % Weiß */
    color: #202020;
}

/* 4. Originales, sehr helles Logo-Blau (passt schon) */
section.boxen .col-xl-3:nth-child(4) .box {
    background-color: #fb7d2e;
    color: #202020;
}

.form-control {
    border-radius: 0;
}

.form-group label{
  font-weight: 600;
  padding-left:1.5rem;
  padding-bottom:.5rem;
}

section.slider{
  margin: 5rem 0;
}

@media(max-width: 1500px){
  .navbar .logo {
    width: 260px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 1.025rem;
  }
  .navbar .navbar-nav .nav-item {
    padding: 0 1rem;
  }
  section.boxen .row{
    row-gap: 1.6rem;
  }
}
@media(max-width: 1200px){
}
@media(max-width: 767px){
  h1 {
    font-size: 1.65rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
 
  .navbar .logo {
    width: 175px;
  }

  .sidenav{
    width: 100vw;
    right: -100vw;
  }
  .sidenav .sidebar-logo{
    display: block;
  }
  section.header-section .padding-header-text{
    padding: 1.6rem;
    text-align: center;
  }
  section.boxen .box {
    max-width: 375px;
    margin: auto;
  }
  section.boxen .row{
    row-gap: 1.6rem;
  }
  .text{
    padding: 1.6rem 0;
  }
  .points .text{
    text-align: center;
  }
}

