/***  respons_1 created by nordicweb.com ***/

/* === START of GOOGLE FONTS IMPORT === */
@import url('');

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/jostinter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jostinter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/jostinter-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/jostinter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/jostinter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jostinter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/jostinter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* === END of GOOGLE FONTS IMPORT === */

/* === START of JQUERY PRELOADER === */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/loading_lightbox_gallery.gif");
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}
/* === END of JQUERY PRELOADER === */

/* === START of BODY & GENERAL STYLES === */

:root {
  --main-color: #008F26;
  --sec-color: #006B1D;
  --light-color: #fff;
  --dark-color: #333;
  --foot-color: #f5f5f5;
  --gray-bg: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
}

*, *::before, *::after { 
  box-sizing: inherit; 
}

html, body {
  height: 100%;
  width: 100%;
}

html {
  box-sizing: border-box;
  font-size: 100%; 
}

html body, table {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Jost", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body h1, body h2, body h3, body h4, body h5, body h6,
body .h1, body .h2, body .h3, body .h4, body .h5, body .h6 {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--main-color);
  text-rendering: optimizeLegibility;
}

body h1, body .h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body h2, body .h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body h3, body .h3 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body h4, body .h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body h5, body .h5 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body h6, body .h6 {
  font-size: 1rem;
  line-height: 1.3;
  margin: 1rem 0;
}

body strong {
  font-family: "Jost", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

body .mainColor, body .mainColor a { color: var(--main-color); }
body .secColor, body .secColor a { color: var(--sec-color); }
body .lightColor, body .lightColor a { color: var(--light-color); }
body .darkColor, body .darkColor a { color: var(--dark-color); }
body .footColor, body .footColor a { color: var(--foot-color); }

.content a, .content a:visited {
  line-height: inherit;
  color: var(--main-color);
  text-decoration: none;
  /* cursor: pointer; */
}
.content a:hover, .content a:focus { 
  color: var(--sec-color) !important; 
  text-decoration: underline;
}

a img { border: 0; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #e0e0e0;
  border-left: 0; 
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic; 
}

.fullWidth {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: initial;
}

.scrollup {
  background: #0e5a22 url(../img/top_btn.png) no-repeat center center;
  background-size: 98%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: fixed;
  bottom: 1.5rem;
  z-index: 100;
  right: 1.5rem;
  opacity: 0.9;
  display: none;
  transition: all 0.3s ease;
}

.scrollup:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.mean-bar { display: none; }

/* === END of BODY & GENERAL STYLES === */

/* === START of HEADER & LOGO === */
.header {
  position: relative;
  width: 100%;
  background: var(--light-color);
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.header .row {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.header .row.align-middle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.header .logo-container {
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  border-left: 2px solid black;}

.header .logo-container .logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  justify-content: flex-end;
}

/* TEXT-LOGO: "BENTIN" Hintergrund */
.header .logo-text {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--light-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  background: var(--main-color);
  padding: 0.5rem 0.75rem;
  display: inline-block;
  width: 100%;
}

/* Tagline unter dem Logo - SCHWARZ */
.header .logo-tagline {
  color: var(--dark-color);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  margin-top: 0.25rem;
}

.header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  flex: 1;
  position: relative;
}
/* === END of HEADER & LOGO === */

/* === START of STICKY & TOP-BAR === */
.sticky {
  background: var(--light-color);
  padding: 0;
  z-index: 100 !important;
  transition: all 0.3s ease;
}

.sticky.is-at-top {
  background: var(--light-color);
  box-shadow: none;
}

.sticky.is-stuck {
  background: var(--light-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.sticky.is-stuck .logo-container img {
  max-height: 40px;
  padding: 0.4rem 0;
}

.sticky .top-bar {
  padding: 0;
  background: transparent;
  width: 100%;
}

.sticky .top-bar .row {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sticky .top-bar .row.align-middle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.top-bar .columns {
  padding: 0 0.5rem;
}
/* === END of STICKY & TOP-BAR === */

/* === START of NAVIGATION === */
/* Navigation Container */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 60px;
  width: 100%;
  flex: 1;
}

/* Burger Menu - positioned right */
.nav .menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: auto;
}

/* Desktop Navigation - HIDDEN by default, shown only on Desktop */
.nav .menu {
  display: none;
}

/* Desktop Menu Styling */
.menu .menu_inner ul.main_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}

.menu .menu_inner ul li {
  position: relative;
  list-style: none;
  margin: 0;
}

/* Main Menu Links - auf dunkle Links */
.menu .menu_inner > ul > li > a {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--main-color);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.menu .menu_inner > ul > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.menu .menu_inner > ul > li > a:hover,
.menu .menu_inner > ul > li > a.active {
  color: var(--sec-color);
}

.menu .menu_inner > ul > li > a:hover:after,
.menu .menu_inner > ul > li > a.active:after {
  width: 100%;
}

/* Kontakt Button in Navigation */
.menu .menu_inner > ul > li.menu-kontakt > a {
  background: var(--light-color);
  color: var(--main-color);
  border-radius: 3px;
  padding: 0 1.5rem;
  height: 36px;
  margin: 12px 0 12px 0.5rem;
  font-weight: 600;
}

.menu .menu_inner > ul > li.menu-kontakt > a:hover {
  background: var(--light-color);
  opacity: 0.9;
}

.menu .menu_inner > ul > li.menu-kontakt > a:after {
  display: none;
}

/* Dropdown Submenu - hidden, controlled by JavaScript */
.menu .menu_inner ul.sub_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 200px;
  background: var(--light-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  padding: 0;
  margin: 0;
  /* border-top: 3px solid var(--main-color); */
}

/* Submenu Items */
.menu .menu_inner ul.sub_menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.menu .menu_inner ul.sub_menu li:last-child {
  border-bottom: none;
}

/* Submenu Links */
.menu .menu_inner ul.sub_menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 1rem;
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: none;
  height: auto;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.menu .menu_inner ul.sub_menu li a:hover,
.menu .menu_inner ul.sub_menu li a.active {
  background: var(--gray-bg);
  color: var(--main-color);
  padding-left: 20px;
}

.menu .menu_inner ul.sub_menu li a:after {
  display: none;
}

/* Third Level Submenu */
.menu .menu_inner ul.subsub_menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  min-width: 200px;
  display: none;
  background: var(--light-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  /* border-top: 3px solid var(--main-color); */
}

/* === END of NAVIGATION === */

/* === START of MENU-TOGGLE (Hamburger) === */
/* Foundation's .menu-icon::after deaktivieren - nur custom Burger verwenden */
.menu-icon::after,
.menu-icon.dark::after {
  display: none !important;
  content: none !important;
}

.menu-toggle {
  display: none;
  position: absolute !important;
  right: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  /* cursor: pointer; */
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.menu-toggle:hover span,
.menu-toggle:hover span:before,
.menu-toggle:hover span:after {
  background-color: var(--sec-color);
}

.menu-toggle.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle.menu-icon span {
  display: block;
  position: relative;
  width: 26px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.menu-icon span:before,
.menu-toggle.menu-icon span:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}

.menu-toggle.menu-icon span:before {
  top: -8px;
}

.menu-toggle.menu-icon span:after {
  top: 8px;
}

/* Burger to X Animation when OPEN */
.menu-toggle.is-active span {
  background-color: transparent;
}

.menu-toggle.is-active span:before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--main-color);
}

.menu-toggle.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--main-color);
}
/* === END of MENU-TOGGLE === */

/* === START of OFF-CANVAS-NAVIGATION === */

/* Off-Canvas - HIDDEN by default, slides in from right */
.off-canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  visibility: hidden;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

/* Off-Canvas OPEN state */
.off-canvas.is-open {
  transform: translateX(0);
  visibility: visible;
}

.off-canvas.position-right {
  right: 0;
  left: auto;
}

/* Header inside Off-Canvas - HIDDEN (nur Burger-X als Close) */
.off-canvas-header {
  display: none;
}

/* Close Button inside Off-Canvas - HIDDEN (Burger wird zum X) */
.off-canvas-close {
  display: none;
}

/* Overlay - HIDDEN */
.js-off-canvas-exit {
  display: none !important;
}

.site .off-canvas * { 
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.site .off-canvas .menu_inner { 
  display: block !important; 
}

.site .off-canvas .menu_inner ul.sub_menu,
.site .off-canvas .menu_inner ul.subsub_menu {
  display: none;
}

/* Off-Canvas Menu Items - Modern Style */
.off-canvas .menu_inner {
  padding: 0.5rem 0;
}

.off-canvas .menu_inner ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.off-canvas .menu_inner > ul > li {
  position: relative;
  border-bottom: 1px solid rgba(0, 143, 38, 0.1);
}

.off-canvas .menu_inner > ul > li:last-child {
  border-bottom: none;
}

.off-canvas .menu_inner ul li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #333;
  outline: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.off-canvas .menu_inner ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.off-canvas .menu_inner ul li a:hover {
  background: rgba(0, 143, 38, 0.05);
  color: var(--main-color);
  padding-left: 2rem;
}

.off-canvas .menu_inner ul li a:hover:before {
  width: 4px;
}

.off-canvas .menu_inner ul li a.active {
  color: var(--main-color);
  background: rgba(0, 143, 38, 0.08);
  font-weight: 600;
}

.off-canvas .menu_inner ul li a.active:before {
  width: 4px;
}

/* Submenu Level 1 */
.off-canvas .menu_inner ul li ul li {
  background: rgba(0, 0, 0, 0.02);
}

.off-canvas .menu_inner ul li ul li a {
  padding-left: 2.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
}

.off-canvas .menu_inner ul li ul li a:hover {
  padding-left: 3rem;
}

/* Submenu Level 2 */
.off-canvas .menu_inner ul li ul li ul li {
  background: rgba(0, 0, 0, 0.03);
}

.off-canvas .menu_inner ul li ul li ul li a {
  padding-left: 3.5rem;
  font-size: 0.85rem;
}

.off-canvas .menu_inner ul li ul li ul li a:hover {
  padding-left: 4rem;
}

/* Toggle buttons for submenus - Modern Style */
.off-canvas .menu_inner ul li a.tog,
.off-canvas .menu_inner ul li a.sub-tog {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  z-index: 5;
  background: transparent;
  border: none !important;
  border-left: 1px solid rgba(0, 143, 38, 0.1) !important;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.off-canvas .menu_inner ul li a.tog:before,
.off-canvas .menu_inner ul li a.sub-tog:before {
  display: none;
}

.off-canvas .menu_inner ul li a.tog:hover,
.off-canvas .menu_inner ul li a.sub-tog:hover {
  background: rgba(0, 143, 38, 0.1);
  padding-left: 0;
}

.off-canvas .menu_inner ul li a.tog.tog-clicked,
.off-canvas .menu_inner ul li a.sub-tog.tog-clicked {
  background: var(--main-color);
  color: var(--light-color);
}

/* Off-Canvas Content wrapper */
.off-canvas-content {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}
/* === END of OFF-CANVAS-NAVIGATION === */

/* === START of SLIDESHOW === */
.slideshow_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#slideshow_1 img {
  object-position: 0% 17% !important;
}

.full-width-slideshow-bg {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.full-width-slideshow-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  z-index: 2;
  pointer-events: none;
}

#slideshow img {
  width: 100%;
  object-fit: cover;
  object-position: 89%;
  position: relative !important;
  display: block !important;
  transition: all .5s ease-in-out;
}

#slideshow {
  position: relative;
}

#slideshow .picture:first-child {
  position: relative !important;
  display: block !important;
}

#slideshow .picture {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
}
/* === END of SLIDESHOW === */

/* === button anpassungen === */
.willkommen-section .btn-outline:hover,
.neuheit-section .btn-outline:hover {
  color: var(--light-color) !important;
}

.icon-box .btn-green:hover {
  background: var(--light-color);
}

/* === START of HERO OVERLAY (Text, Button, Pfeil) === */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  pointer-events: auto;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
  /* font-style: italic; */
}

/* Hero Button mit Sprechblase-Pfeil */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--light-color);
  color: var(--main-color) !important;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--main-color);
  position: relative;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--main-color);
  color: var(--light-color) !important;
}

/* Sprechblase Pfeil nach unten */
.hero-btn:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--main-color);
}

/* Animierter Pfeil */
.hero-arrow {
  display: block;
  margin-top: 2.5rem;
  text-decoration: none;
}

.arrow-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(8px) rotate(45deg);
  }
  60% {
    transform: translateY(4px) rotate(45deg);
  }
}
/* === END of HERO OVERLAY === */

/* === START of MOBILE START IMAGE === */
.mobilstart_img {
  display: block;
  width: 100%;
  background: url('...') no-repeat;
}
/* === END of MOBILE START IMAGE === */

/* === START of CONTENT === */
.content {
  margin-top: 0px;
  width: 100%;
}

.content:before, .content:after {
  content: " ";
  display: table;
}

.content:after {
  clear: both;
}

.modul_extra {
  /* max-width: 75rem; */
  margin: 0 auto;
}

.module_textblock {
  padding: 3rem 0 2rem;
}

/* === button anpassungen === */
.willkommen-section .btn-outline:hover,
.neuheit-section .btn-outline:hover {
  color: var(--light-color) !important;
}

.icon-box .btn-green:hover {
  background: var(--light-color);
}

/* === Video Home === */	
.video-container {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.video-container video {
  display: block;
  /* width: auto; */
  max-height: 650px;
}

#muteBtn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

#muteBtn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.page_165726 .icon-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


.page_165726 .icon-box:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); */
}

.page_165733 img {
  margin-bottom: 1.2rem;
}

/* unterseite img shadow */
.unser-team img,
.baeder-und-nassbereich img,
.fliesen img,
.fassade img,
.balkonsanierung img,
.trockenlegung img,
.reparaturen img,
.fenster-und-tueren img,
.maurer-betonarbeiten img,
.neubauten img,
.durchbrueche img,
.aufstockung img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
} 

/* breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
}

.breadcrumb ol,
.breadcrumb nav {
  margin: 0 !important;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 5px;
}

.breadcrumb li:last-child::after {
  content: "";
}
/* === START OF OVERLAY === */
.maps-box {
  text-align: center;
  position: relative;
  height: 28rem;
  overflow: hidden;
  background: #cecece;
}

.maps-box:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28rem;
  opacity: 0.25;
  z-index: -1;
}

.maps-box iframe {
  width: 100%;
  height: 28rem;
}

.page_165365 div#texter {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 2rem;
  justify-content: center;
  align-items:
    center;
}

div#texter p {
  font-weight: bold;
}

#maps-knopf {
  padding: 10px 20px;
  border: 1px solid white;
  /*border-radius: 10px;*/
  background: var(--main-color);
  color: #fff !important;
}

/* === END OF OVERLAY === */

/* Ausstellung â€“ Anpassungen */
.neuheit-section h4 {
  color: var(--main-color);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.neuheit-section .small-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.neuheit-section .highlight-text {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.neuheit-section .ausstellung-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 340px;
  margin-bottom: 1rem;
}
.neuheit-section .ausstellung-actions .btn-outline {
  width: 100%;
  justify-content: center;
}
.neuheit-section .gallery-link a {
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
}

.neuheit-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* === END of CONTENT === */

/* === START of FOOTER === */
div.site_foot {
  display: none;
}

div.foot {
  display: none;
}

div.foot_inner {
  position: relative;
  font-size: 11px;
}

div.foot, div.foot a {
  color: #666;
}
/* === END of FOOTER === */

/* === START of CONTENT-INNER-FOOTER === */
.content_inner_footer {
  position: relative;
  background: var(--light-color);
  color: var(--dark-color);
  width: 100%;
}

/* Footer Logo Section */
.footer-logo-section {
  background: var(--light-color);
  padding: 0;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 2rem 1rem 1rem 1rem;
}

/* BENTIN - weiem Hintergrund */
.footer-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1;
  background: var(--main-color);
  padding: 0.6rem 1.25rem;
  display: inline-block;
}

/* BAUUNTERNEHMUNG & TISCHLEREI - schwarz, kein Hintergrund */
.footer-logo-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
  margin-top: 0.75rem;
  display: block;
}

/* Footer Row - Weier Hintergrund */
.content_inner_footer > .row {
  max-width: 75rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  background: var(--light-color);
}

/* 3 Columns - equal width */
.content_inner_footer .footer-col {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 0 1.5rem;
}

/* Column Left */
.content_inner_footer .footer-col-left {
  text-align: center;
}

/* Column Center */
.content_inner_footer .footer-col-center {
  text-align: center;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

/* Column Right */
.content_inner_footer .footer-col-right {
  text-align: center;
}

/* Footer Icons - Gro und oben */
.content_inner_footer img.footer-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 1rem auto;
  filter: none;
}

/* Footer Headlines */
.content_inner_footer h6 {
  color: var(--main-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: none;
  font-weight: 700;
  display: block;
  text-align: center;
}

/* Footer Text */
.content_inner_footer p {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-color);
  text-align: center;
}

/* Footer Links */
.content_inner_footer a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.content_inner_footer a:hover {
  /* border-bottom: 1px solid var(--main-color); */
  /* padding-bottom: 0.25rem; */
  /* color: var(--sec-color); */
  /* text-decoration: underline; */
}

/* Copyright Line */
.content_inner_footer .fullWidth {
  background: var(--light-color);
  padding: 1.5rem 0;
  width: 100%;
  border-top: 1px solid #eee;
}

.content_inner_footer .fullWidth .row {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.content_inner_footer .fullWidth a {
  color: var(--dark-color);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.content_inner_footer .fullWidth a:hover {
  color: var(--main-color);
}

.content_inner_footer .siteCreated {
  font-size: 0.85rem;
  color: #666;
  display: none;
}

.content_inner_footer .siteCreated a {
  color: var(--main-color);
}
/* === END of CONTENT-INNER-FOOTER === */

/* === FOUNDATION HELPER CLASSES === */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* ============================================= */
/* === START of MEDIA QUERIES === */
/* ============================================= */

/* --------------------------------------------- */
/* Mobile (up to 639px / 39.9375em) */
/* --------------------------------------------- */
@media only screen and (max-width: 39.9375em) {
  /* Typography */
  body h1, body .h1 { font-size: 1.5rem; }
  body h2, body .h2 { font-size: 1.25rem; }
  body h3, body .h3 { font-size: 1.125rem; }
  body h4, body .h4 { font-size: 1rem; }
  body h5, body .h5 { font-size: 0.9375rem; }
  body h6, body .h6 { font-size: 0.875rem; }
  
  /* Header Logo */
  .header .logo-text {
    font-size: 1.25rem;
    padding: 0.35rem 0.5rem;
    letter-spacing: 2px;
  }
  
  .header .logo-tagline {
    font-size: 0.5rem;
  }

    .header .row.align-middle {
    flex-direction: row;
  }

  /* slideshow fotos anpassungen */
  #slideshow_2 img {
    object-position: 40%;
  }

    #slideshow_1 img {
    object-position: 33% !important;
  }
  
  /* Navigation - Menu HIDDEN, Burger VISIBLE */
  .nav .menu {
    display: none !important;
  }
  .menu-toggle.menu-icon {
    display: block !important;
  }
  
  /* Hero Content - kleiner */
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .hero-content {
    margin-top: 0;
  }
  
  /* Footer - stacked columns */
  .content_inner_footer > .row {
    padding: 2rem 1rem;
  }
  .content_inner_footer .footer-col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
    padding: 1.5rem 1rem;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #eee;
  }
  .content_inner_footer .footer-col:last-child {
    border-bottom: none;
  }
  
  .content_inner_footer .fullWidth .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Footer Logo - kleiner */
  .footer-logo-text {
    font-size: 1.75rem;
    padding: 0.5rem 1rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }
  
  /* Helper Classes */
  .hide-for-small-only { display: none !important; }
}

/* --------------------------------------------- */
/* Tablet (640px - 1023px / 40em - 63.9375em) */
/* --------------------------------------------- */
@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
  /* Header Logo */
  .header .logo-text {
    font-size: 1.25rem;
  }
  
  .header .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .header .row.align-middle {
    flex-direction: row;
  }
  
  /* Navigation - Menu HIDDEN, Burger VISIBLE */
  .nav .menu {
    display: none !important;
  }
  .menu-toggle.menu-icon {
    display: block !important;
  }
  
  /* Hero Content */
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-content {
    margin-top: 1rem;
  }
         .neuheit-section {
    flex-direction: column-reverse;
align-items: flex-start;
}
  /* Helper Classes */
  .medium-text-left { text-align: left; }
  .medium-text-right { text-align: right; }
  .medium-text-center { text-align: center; }
  .hide-for-medium-only { display: none !important; }
}

/* --------------------------------------------- */
/* Desktop (1024px and up / 64em+) */
/* --------------------------------------------- */
@media only screen and (min-width: 64em) {
  /* Logo */
  .header .logo-text {
    font-size: 1.75rem;
  }
  
  .header .logo-tagline {
    display: block;
  }
  
  .sticky.is-stuck .logo-text {
    font-size: 1.5rem;
  }
  
  /* Navigation - Menu VISIBLE, Burger HIDDEN */
  .nav .menu {
    display: block !important;
  }
  .menu-toggle,
  .menu-toggle.menu-icon {
    display: none !important;
  }
  
  /* Off-Canvas - completely hidden on Desktop */
  .off-canvas,
  .off-canvas.is-open,
  .off-canvas.position-right,
  .off-canvas.position-right.is-open {
    display: none !important;
    visibility: hidden !important;
    transform: translateX(100%) !important;
  }
  .js-off-canvas-exit {
    display: none !important;
  }
  
  /* Helper Classes */
  .large-text-left { text-align: left; }
  .large-text-right { text-align: right; }
  .large-text-center { text-align: center; }
  .hide-for-large { display: none !important; }
  .show-for-large { display: block !important; }
}

/* --------------------------------------------- */
/* Large Screens (1200px and up / 75em+) */
/* --------------------------------------------- */
@media only screen and (min-width: 75em) {
  .menu .menu_inner > ul > li > a {
    padding: 0 1.25rem;
    /* font-size: 14px; */
  }
}

/* --------------------------------------------- */
/* Mobile/Tablet combined (up to 1023px) */
/* --------------------------------------------- */
@media only screen and (max-width: 63.9375em) {
  /* Off-Canvas - hidden by default, shown on click via is-open class */
  .off-canvas {
    display: block;
    visibility: hidden;
    transform: translateX(100%);
  }
  
  .off-canvas.is-open {
    visibility: visible;
    transform: translateX(0);
  }
  
  .show-for-large { 
    display: none !important; 
  }
}

/* ============================================= */
/* === END of MEDIA QUERIES === */
/* ============================================= */
