


.c-logo-header img {
    max-width: 100%;
    height: auto;
    width: 300px;
    display: block;
}

.text-inverse {
  color: white;
}


body {
  overflow-x: hidden;
}


.c-rsce_centered_wrap_start.bg-dark-grey {
  width: 100vw;         /* nimmt volle Breite des Viewports */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.c-rsce_centered_wrap_start.bg-dark-grey .content-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mod_rocksolid_slider img {
  width: 100%;
}

.c-content--footer {
  color: #fff;
  font-size: 85%;
}

.c-section--footer {
  background: var(--theme-color1);
}

footer a {
  color: white;
  text-decoration: none;
}


/* Slider - von Simonbauer übernommen */

.slider-container{
  padding:0;
  overflow:hidden}
  
.slider{
  height:600px;
  position:relative
}

@media screen and (max-width: 992px){
  .slider{
    height:400px;
    margin-top:120px
  }
}

@media screen and (max-width: 480px){
  .slider{
    height:400px;
    margin-top:180px
    }
}

@media screen and (max-width: 320px){
  .slider{
    height:300px
    }
}

onepage-style {
  text-decoration: none;
  color: ccc;
}


/* ===== One Gray Accordion – feine Linien ===== */
:root{
  --acc-bg: #f8f8f8;
  --acc-bg-hover: #f3f3f3;
  --acc-border: #e5e5e5;
  --acc-text: #222;
  --acc-muted: #666;
  --acc-radius: 10px;
  --acc-pad-x: 1rem;
  --acc-pad-y: 0.85rem;
  --acc-speed: .25s;
}

/* ========== Contao Accordion CE ========== */
/* Wrapper */
.ce_accordion {
  border: 1px solid var(--acc-border);
  border-radius: var(--acc-radius);
  background: #fff;
  overflow: hidden;
}

/* Einzelne Items – häufig als .toggler + .accordion gepaart */
.ce_accordion .toggler {
  position: relative;
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  margin: 0;
  padding: var(--acc-pad-y) var(--acc-pad-x);
  background: var(--acc-bg);
  color: var(--acc-text);
  border-top: 1px solid var(--acc-border);
  cursor: pointer;
  user-select: none;
  transition: background var(--acc-speed), color var(--acc-speed);
}
.ce_accordion .toggler:first-child {
  border-top: 0;
  border-radius: var(--acc-radius) var(--acc-radius) 0 0;
}
.ce_accordion .toggler:hover,
.ce_accordion .toggler:focus {
  background: var(--acc-bg-hover);
  outline: none;
}

/* Pfeil */
.ce_accordion .toggler::after {
  content: "";
  margin-left: auto;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--acc-muted);
  border-bottom: 1.5px solid var(--acc-muted);
  transform: rotate(-45deg);
  transition: transform var(--acc-speed);
}

/* geöffneter Zustand – viele Themes setzen .active oder aria-expanded=true */
.ce_accordion .toggler.active::after,
.ce_accordion .toggler[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

/* Panel */
.ce_accordion .accordion {
  border-top: 1px solid var(--acc-border);
  padding: 0 var(--acc-pad-x);
  background: #fff;
  color: var(--acc-text);
}

/* „feine Linien“-Look im Panel */
.ce_accordion .accordion > * + * {
  border-top: 1px dashed var(--acc-border);
  margin-top: .8rem;
  padding-top: .8rem;
}

/* Innen etwas Luft */
.ce_accordion .accordion .inner,
.ce_accordion .accordion > div,
.ce_accordion .accordion > section,
.ce_accordion .accordion > p {
  padding: var(--acc-pad-y) 0;
}

/* letzter Panel-Radius */
.ce_accordion .accordion:last-child {
  border-bottom-left-radius: var(--acc-radius);
  border-bottom-right-radius: var(--acc-radius);
}

/* ========== HTML <details> Fallback/Alternative ========== */
details.accordion {
  border: 1px solid var(--acc-border);
  border-radius: var(--acc-radius);
  background: #fff;
  overflow: hidden;
}
details.accordion + details.accordion {
  margin-top: .6rem;
}

details.accordion > summary {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: var(--acc-pad-y) var(--acc-pad-x);
  background: var(--acc-bg);
  color: var(--acc-text);
  cursor: pointer;
  transition: background var(--acc-speed), color var(--acc-speed);
}
details.accordion > summary:hover,
details.accordion > summary:focus {
  background: var(--acc-bg-hover);
  outline: none;
}
details.accordion > summary::-webkit-details-marker { display: none; }

details.accordion > summary::after {
  content: "";
  margin-left: auto;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--acc-muted);
  border-bottom: 1.5px solid var(--acc-muted);
  transform: rotate(-45deg);
  transition: transform var(--acc-speed);
}
details.accordion[open] > summary::after { transform: rotate(45deg); }

details.accordion .accordion-content {
  padding: var(--acc-pad-y) var(--acc-pad-x);
  border-top: 1px solid var(--acc-border);
}

/* ========== Feinheiten & Zugänglichkeit ========== */
.ce_accordion .toggler:focus-visible,
details.accordion > summary:focus-visible {
  box-shadow: 0 0 0 2px rgba(0,0,0,.08), 0 0 0 4px rgba(0,0,0,.05);
}

/* dunklere Trennlinien auf sehr hellem Hintergrund, falls nötig */
@media (prefers-contrast: more) {
  :root { --acc-border: #d5d5d5; }
}

.bestpreis-button {
    position: absolute;
    bottom: 60px; /* Abstand zum unteren Rand */
    right: 60px; /* Abstand zum rechten Rand */
    width: 180px; /* Größe des Buttons */
    height: 180px;
    background-color: #c3532b; /* Deine Wunschfarbe */
    color: #fff!important;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transform: rotate(20deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Macht den Button rund */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000; /* Über anderen Elementen */
    cursor: pointer;
    border: dotted;
}

/* Hover-Effekt */
.bestpreis-button:hover {
    background-color: #b44d27;
    transform: scale(1.1);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .bestpreis-button {
        display: none;
    }
}


/* Standard in Fließtext */
.c-content b,
.c-content strong {
  font-weight: normal !important;
  color: #c3532b !important;
}

/* Inverse auf farbigem/dunklem Hintergrund */
.c-content.c-content--inverse b,
.c-content.c-content--inverse strong {
  color: #ccc !important; /* ggf. #ffffff anpassen */
}

/* b, strong {
    font-weight: normal !important;
    color: #c3532b !important;
}
*/

/* =========================
   Contao 5 - Formular Styling
   Scope: nur Formulare im Content-Element "Formular"
   ========================= */

.ce_form form {
  /* Layout */
  max-width: 720px;
  margin: 0;
  display: grid;
  gap: 16px;

  /* Typo */
  font-size: 16px;
  line-height: 1.4;
}

/* Feld-Gruppen (oft .widget / .form-group / .field / etc.)
   Wir halten’s flexibel: wenn Wrapper existiert, bekommt er Abstand */
.ce_form form .widget,
.ce_form form .form-group,
.ce_form form .field,
.ce_form form .formbody > div {
  display: grid;
  gap: 4px;
}

/* Labels */
.ce_form form label {
  font-weight: 400;
  font-size: 0.95rem;
  margin-top: 30px;
}

/* Inputs allgemein */
.ce_form form input[type="text"],
.ce_form form input[type="email"],
.ce_form form input[type="tel"],
.ce_form form input[type="number"],
.ce_form form input[type="url"],
.ce_form form input[type="search"],
.ce_form form input[type="password"],
.ce_form form input[type="date"],
.ce_form form textarea,
.ce_form form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;

  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  background: #fff;

  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Textarea angenehmer */
.ce_form form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Focus State */
.ce_form form input:focus,
.ce_form form textarea:focus,
.ce_form form select:focus {
  border-color: rgba(0,0,0,0.45);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* Platzhalter */
.ce_form form ::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Select: Pfeil optional neutral lassen; Browser macht’s je nach OS */
.ce_form form select {
  appearance: auto;
}

/* Checkbox & Radio: modern mit Abstand */
.ce_form form input[type="checkbox"],
.ce_form form input[type="radio"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* Checkbox/Radio Reihen (häufig .checkbox_container / .radio_container) */
.ce_form form .checkbox_container,
.ce_form form .radio_container {
  display: grid;
  gap: 8px;
}

.ce_form form .checkbox_container label,
.ce_form form .radio_container label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

button, select {
    margin-top: 20px;
    text-transform: none;
}



.button_anfrage {
    height: 40px;
    background-color: var(--theme-color6);
}

/* 
[type=button]:not(:disabled), 
[type=reset]:not(:disabled), 
[type=submit]:not(:disabled), 
button:not(:disabled) {
    cursor: pointer;
    height: 40px;
    background-color: var(--theme-color6);
}
*/






