/* ===============================
   Geschäftskundenbereich – UNIKAT
   =============================== */

body.geschaeftskundenbereich {
  background-color: #000000; /* oder var(--farbe5) */
  
}

.gk-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.gk-block {
  margin-bottom: 4rem;
}




.gk-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
    
}


.gk-subline {
  text-align: center;
  opacity: 0.8;
  color: var(--farbe8);
}


.gk-hau {
  padding: 8rem 0;
  background: transparent;
}

.gk-hau .gk-headline .w {
  color: var(--farbe1);
}

.o  {
  color: var(--farbe1);
}


/* Zitat: goldene Farbe, keine Einrückung */
.hf-quote {
  border-left: 4px solid var(--farbe1); /* 4px breiter goldener Balken */
  padding-left: 1rem;                   /* Abstand zwischen Balken und Text */
  margin-left: 0;                        /* evtl. Standard-Einzug entfernen */
  color: #333;                           /* normale Textfarbe */
  font-style: normal;                     /* keine Kursivschrift */
}

.hf-quote p {
  line-height: 1.5;
}



/* Zitat-Footer */
blockquote .quote-footer {
  color: var(--farbe1); /* goldene Farbe */
  font-style: normal;   /* optional */
  margin-top: 1rem;
  background-color: transparent;
}


/* Zweispaltige Story – inspiriert von deiner Bildergalerie (Split) */
    .gk-story{
      width:min(1200px,92vw); 
      margin: 0 auto clamp(32px,6vw,56px);
      display:grid; 
      grid-template-columns: 1fr 1fr; 
      align-items:center; 
      gap: clamp(20px,4vw,64px);
      margin-top: 5rem;
    }

/* Container für Bild + Badge (Positionierung als Bezugspunkt) */
.gk-img-container {
  position: relative;      /* Badge kann relativ zum Container positioniert werden */
  display: inline-block;
  width: 100%;
}

/* Wrapper fürs Bild, begrenzt Zoom */
.gk-img-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

/* Hauptbild */
.gk-img-wrapper .gk-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

/* Zoom beim Hover */
.gk-img-wrapper:hover .gk-img {
  transform: scale(1.1);
}



/* Badge über dem Bild */
.gk-size-badge {
  position: absolute;
  bottom: -12px;   /* über den unteren Rand hinaus */
  right: -12px;    /* über den rechten Rand hinaus */
  width: 100px;    /* optional: passe Größe an */
  height: auto;
  border-radius: 12px;   /* optional, wenn du abgerundete Ecken willst */
  box-shadow: 0 6px 18px rgba(0,0,0,.25); /* optional, um das „Aufklebe“-Gefühl zu verstärken */
  z-index: 2;        /* sicherstellen, dass es über dem Hauptbild liegt */
}

    .gk-story .gk-text{ 
      justify-self:end; 
      width: min(560px, 42vw); 
    }

    .gk-story h2{ 
      margin:0 0 .5rem; 
      font-family: var(--font-serif,'Cinzel',serif); 
      color: var(--farbe1); 
      font-size: clamp(1.4rem,3.2vw,2rem); 
    }

    .gk-story p{ 
      margin: 0;
      line-height: 1.55;
      color: #fff;
      
      font-size: clamp(1rem, 1.2vw, 1.125rem);
    }

    /* Fade-in (falls du deine allgemeine Klasse nutzt) */
.fade-in-on-scroll{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.fade-in-on-scroll.visible{
  opacity: 1;
  transform: none;
}



/*Kontakt-Formular*/
.b2b-kontakt{
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: #111;
}

.b2b-container{
  max-width: 1200px;     /* Inhalt nicht zu breit */
  margin: 0 auto;        /* zentriert */
  padding: clamp(1.2rem, 4vw, 3rem);
}

.b2b-kontakt-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  
}

/* Textbereich */
.b2b-kontakt-daten{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  
}

.b2b-kontakt-daten h2{
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--farbe1, #b08a2e);
  
}

.kontakt-liste{
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
 
}

.kontakt-liste li{
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: var(--farbe8);
}

.kontakt-liste a{
  color: inherit;
  text-decoration: none;
}

/*
.kontakt-liste a:hover{
  text-decoration: underline;
}
*/

.kontakt-abschluss{
  max-width: 420px;
  opacity: 0.85;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--farbe8);
}

/* Bildbereich */
.b2b-kontakt-bild img{
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  aspect-ratio: 16 / 9;
}

.b2b-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden; /* Damit das Hoverbild nicht übersteht */
  border-radius: 24px;
}

.b2b-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 1.5s ease;
}

/* Hoverbild initial verstecken */
.b2b-img-wrapper .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

/* Hover-Effekt */
.b2b-img-wrapper:hover .hover-img {
  opacity: 1;
}

.b2b-img-wrapper:hover .main-img {
  opacity: 0; /* optional, wenn das Originalbild ausblenden */
}


/* Responsive */
@media (max-width: 768px){
  .b2b-kontakt-inner{
    grid-template-columns: 1fr;
  }

  
  .b2b-kontakt-bild{
    order: -1;
  }
}

.b2b-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

@media (max-width: 768px){
  .b2b-grid{
    grid-template-columns: 1fr;
  }
}


.b2b-download-btn{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;

  padding: .7rem 1.6rem;
  border-radius: 999px;

  border: 2px solid var(--farbe1, #b08a2e);
  color: var(--farbe1, #b08a2e);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;

  transition: background .25s ease, color .25s ease;
}

.b2b-download-btn:hover{
  background: var(--farbe1, #b08a2e);
  color: #fff;
}



/*Hover Animation-mittig*/

.tel-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 2px; /* Platz für Linie */
}

.tel-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.tel-link:hover::after,
.tel-link:focus-visible::after {
  width: 100%;
}





/* Bestseller-Container zentriert */
.b2b-bestseller-center {
  background-color: #000;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  margin: 3rem 0;
}

/* Grid: Text – Bild – Text */
.b2b-bestseller-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

/* Textbereiche */
.b2b-bestseller-text h3 {
  color: var(--farbe1, #b08a2e);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.b2b-bestseller-text p {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.b2b-bestseller-text h4 {
  color: var(--farbe1, #b08a2e);
  font-size: clamp(3.0rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

/* Bildbereich */
.b2b-bestseller-img img {
  width: 180px; /* feste Größe für Eyecatcher */
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover-Effekt */
.b2b-bestseller-img img:hover {
  transform: scale(1.05);
}

/* Responsive: auf kleinen Screens wird alles gestapelt */
@media (max-width: 768px) {
  .b2b-bestseller-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .b2b-bestseller-text.left,
  .b2b-bestseller-text.right {
    text-align: center;
  }

  .b2b-bestseller-text h4 {
  font-size: clamp(2.5rem, 3vw, 2.2rem);
}
}



















/* Hero */
.gk-hero {
  position: relative;
  text-align: center;
}

.gk-hero-glass {
  max-width: 420px;
}

.gk-hero-badge {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 120px;
}

/* Bestseller */
.gk-bestseller {
  margin-top: 6rem;
}

.gk-bestseller-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.gk-bestseller-text {
  max-width: 480px;
}







/* Body als flex Container */
/* 1. Body als flex-Column */
body.geschaeftskundenbereich.subpage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* 2. Main füllt den restlichen Platz */
.main-wrapper-gk {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* 3. Footer immer unten, volle Breite */
footer {
  flex-shrink: 0;   /* bleibt unten */
  width: 100%;
  background-color: transparent; /* gewünschte Farbe */
  margin: 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* Optional: Footer-Content zentrieren */
footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}


@media (max-width: 900px){
  .gk-story {
    display: block;           /* gesamte Story blocken */
  }

  .gk-story .gk-img-container,
  .gk-story .gk-text{
    display: block;           /* Bild und Text untereinander */
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  /* Hauptbild */
  .gk-story .gk-img-wrapper img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transform: none;
    margin-bottom: 2.5rem; /* Abstand zwischen Bild und Text */
  }

  
}








/* Badge für kleine Screens skalieren */
@media (max-width: 768px) {
  .gk-size-badge {
    width: 100px;         /* kleineres Badge */
    bottom: -6px;        /* etwas weniger über den Rand hinaus */
    right: -6px;         /* etwas weniger über den Rand hinaus */
  }
}

@media (max-width: 480px) {
  .gk-size-badge {
    width: 80px;         /* sehr klein für mobile */
    bottom: -4px;
    right: -4px;
  }
}



