/* ================= CI SYSTEM ================= */
html, body {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

:root {
  --primary: #A8D5A0;
  --primary-dark: #DFF2D8;
  --primary-light: #DFF2D8;
  --primary-text-color: #333;
  --second-text-color: #999;
  --white-text: #fff;
  --white-bg: #fff;
}

/* ================= RESET (optimiert) ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  color: var(--primary-text-color);
  background: var(--white-bg);
}

a {
  color: var(--primary-text-color);
  text-decoration: none;
}

a:hover {
  color: var(--second-text-color);
}

h1, h2, h3, h4, .navbar-brand {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  letter-spacing: 0.5px;
}

p {
  color: #333 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.3px;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 1.2rem;
}
/* ================= UTIL ================= */

.abstand { margin-bottom: 2%; }
.top { vertical-align: top; }

/* ================= LOGO ================= */

img.logo {
  width: 250px;
  height: auto;
}

/* ================= BUTTONS ================= */

.btn-success,
.bg-success {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white-text) !important;
}

.btn-success:hover {
  background-color: var(--primary-dark) !important;
}

.btn-green {
  background: var(--primary);
  color: var(--white-text);
  padding: 6px 18px;
  border-radius: 10px;
  display: inline-block;
  transition: .3s;
}

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ================= TOP BAR ================= */

.top-contact {
  background: var(--white-bg);
  text-align: right;
  font-size: 17px;
  padding: 5px 0;
}

.top-contact a {
  color: var(--primary-text-color);
}

/* ================= NAV ================= */

nav {
  background: #fff;
  color: var(--primary-text-color);
}

.nav-link {
    font-size: 20px !important;
    font-weight: 600 !important;
}

/* ================= HERO ================= */

.hero {
  background: linear-gradient(var(--primary-dark), var(--primary-light)),
    url('../images/highlight-box.png') center/cover;
  min-height: 200px;
  text-align: center;
  padding: 20px;
  color: var(--white-text);
}

.hero h1 {
  color: #333 !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-size: 1.7rem !important;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.hero p {
  color: #333 !important;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  margin-top: 8px;
}

.hero-form {
  overflow-x: auto;
  white-space: nowrap;
}

/* ================= LAYOUT ================= */

.two-column-section {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px 0;
}

.column { flex: 1; }

.image-col img {
  width: 100%;
  border-radius: 12px;
}

/* WICHTIG: Keine Begrenzung mehr */
.text-container {
  max-height: none;
  overflow: visible;
}

/* ? Einheitliches Design f�r alle Dienstleistungsseiten ? */

/* Hauptbereich */
.contentarea {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    line-height: 1.6;
}

/* �berschriften */
.contentarea h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.contentarea h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.contentarea h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
}

/* Flie�text */
.contentarea p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 14px;
    color: #333;
}

/* Vorteile-Liste */
.contentarea ul.icon-list li {
    font-size: 1.05rem;
}

/* CTA-Button */
.cta-btn {
    display: inline-block;
    background: #87bf72;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.cta-btn .arrow {
    font-size: 1.2rem;
}

/* ================= CONTENT BOX ================= */

#bildtext {
  background: #f8fdf6;
  border: 1px solid var(--primary-text-color);
  border-radius: 10px;
  padding: 2%;
}

/* ================= HIGHLIGHTS ================= */

.highlight-box {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  min-height: 300px; /* H�he anpassen bis alle gleich aussehen */
  border: 1px solid var(--primary);

  background: var(--white-bg);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: .3s;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.highlight-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

/* ================= DIENSTLEISTUNGS-TEXTE KLEINER & KOMPAKTER ================= */

.highlight-box p {
    font-size: 1rem !important;      /* kleiner */
    line-height: 1.4 !important;     /* enger */
    margin-bottom: 0.6rem !important;/* weniger Abstand */
}

.highlight-box h3 {
    margin-bottom: 0.6rem !important; /* �berschrift kompakter */
}

.highlight-box a.btn {
    margin-top: 0.6rem !important;    /* Button n�her am Text */
}

/* ================= TOGGLE ================= */

.toggle-btn,
#toggleBtn,
.toggle-button {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

/* ================= PARTNER SLIDER ================= */

.partner-slider {
  overflow: hidden;
  white-space: nowrap;
}

.partner-slider img {
  height: 60px;
  margin: 0 35px;
  filter: grayscale(100%);
}

.slide-track {
  display: inline-block;
  animation: slide 18s linear infinite;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= FOOTER ================= */

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 2px ;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-box {
  background: var(--primary-light);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-box:hover {
  transform: translateY(-5px);
  background: #f2ffe9; /* sehr leichtes Gr�n */
  border-color: #7cbb65; /* dein Gr�n */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.footerboxintro {
  color: #262626 !important;
  font-weight: bold;
  font-size: 0.75rem !important;
}

.footer-box a {
  font-size: 1rem !important;
  font-weight: bold;
}

.fixed-footer small,
.fixed-footer a {
  color: #262626 !important;
}

/* ? MOBILE OPTIMIERUNG ? */
@media (max-width: 768px) {

  .fixed-footer {
    padding: 6px 0;
  }

  .footer-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding: 4px;
  }

  .footer-box {
    min-width: 240px;
    padding: 6px;
    font-size: 0.75rem;
  }

  .footerboxintro {
    font-size: 0.7rem !important;
  }

  .footer-box a {
    font-size: 0.75rem !important;
  }

  .fixed-footer small {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  body {
    padding-bottom: 0px;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
/* ================= SOCIAL ================= */

.floating-social {
  position: fixed;
  right: 20px;
  top: 60%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 9999;
}

.floating-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: #333;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.floating-social a:hover {
  transform: scale(1.1);
  background: #25d366; /* optional Highlight-Farbe */
  color: #fff;
}

/* ================= FORM / STEPS ================= */

.step { display: none; }
.step.active { display: block; }

.form-control {
  border: 1px solid var(--primary);
}

.form-check-input:checked {
  background: var(--primary);
}

.device {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
  }

  .highlight-box .p-3 h5 {
    font-size: 1.1rem;
  }

  .highlight-box .p-3 p {
    font-size: .85rem;
  }

  .social-fixed {
    right: 5px;
  }
}

@media (max-width: 576px) {
  h2.text-success {
    font-size: 2rem;
  }

  .btn-green {
    font-size: .9rem;
  }
}

/* ================= SCH�NE, SICHTBARE FEATURE-BOXEN ================= */

.feature-box {
  border: 1px solid #dcdcdc;
  transition: all 0.25s ease-in-out;
  background: #ffffff !important;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: #7cbb65;
}

.feature-box i {
  color: #7cbb65 !important;
}

.feature-box ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.global-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;

}

section .container > p.text-center {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}

/* Elternbox zentriert den Inhalt */
.feature-box {
    text-align: center;
}

/* Liste selbst wird wie ein �Block� in der Mitte behandelt */
.feature-box {
    text-align: center; /* alles in der Box zentrieren */
}

.feature-box ul {
    display: inline-block; /* Liste wird so breit wie n�tig */
    text-align: left;      /* Stichpunkte bleiben lesbar */
    margin: 0 auto;        /* Liste wird zentriert */
    padding: 0;
}

.feature-box.modern-box {
    border-radius: 18px !important;
    overflow: hidden;
}

/* ================= MODERNE KONFERENZTECHNIK-SEITE ================= */

.service-section {
  background: #f8fdf6;
}

.service-title {
  font-size: 3.4rem;
  font-weight: 800;
}

.service-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  text-align: left !important;
}


.service-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
  color: #333;
}

.service-list-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
}


.service-list li {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;  /* �bernimmt die Schrift der Website */
    font-size: 0.95rem;         /* gleiche Gr��e wie Flie�text */
    line-height: 1.6;
    margin-bottom: 0.9rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.icon-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  color: #7cbb65;
  font-weight: bold;
  margin-right: 10px;
}

.service-slider {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* ================= KONFERENZTECHNIK � �BERSCHRIFT LINKS ================= */

.service-title {
    color: var(--primary-dark) !important;
}
/* ================= SERVICE-TITEL HELLGR�N ================= */
.service-title,
.service-item h3,
.service-item-title,
.all-services-list h3,
h3.service-title,
h3.service-item,
.all-services-list .service-name {
    color: var(--primary) !important; /* hellgr�n */
}
/* Abstand zwischen Kundenblock und Vorteileblock */
.kunden-block {
    margin-bottom: 80px !important;
}

.vorteile-block {
    margin-top: 40px !important;
}
/* ================= MODERNE TRENNLINIE ================= */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 30px 0;
}

.section-divider .line {
    flex: 1;
    height: 1px;
    background: #dcdcdc;
}

.section-divider .dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 15px;
}

.hero h1 {
    color: #333 !important; /* hellschwarz */
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    font-size: 2rem !important;
}

.hero h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 3px;
    background: var(--primary); /* dein Hellgr�n */
    border-radius: 3px;
}
.hero p {
    color: #333 !important; /* gleiche Farbe wie die H1 */
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    margin-top: 8px;
}
.vorteile-block h2,
.kunden-block h2,
section .container h2 {
    color: #333 !important; /* hellschwarz */
    font-weight: 800;
    letter-spacing: 0.5px;
}
.header-social a {
    transition: 0.3s ease;
}

.header-social a:hover {
    color: #000 !important;
    transform: translateY(-2px);
}

body {
    padding-bottom: 250px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #198754;
    border-radius: 50%;
    padding: 20px;
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}
.social-fixed {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ? alles links ausrichten */
  gap: 10px;
}

.social-text {
  font-size: 0.85rem;
  color: #000;      /* ? schwarz */
  font-weight: 800;
  margin-bottom: 8px;
}
/* ================= EINHEITLICHE �BERSCHRIFTEN F�R DIE STARTSEITE ================= */

.section-title,
.global-title,
.service-title {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 1,2rem !important; /* gleiche Gr��e wie Hero oder etwas kleiner */
    font-weight: 800 !important;
    letter-spacing: 0.5px; /* wie Hero */
    color: #333 !important; /* gleiche Farbe wie Hero */
    text-align: center;
    margin-bottom: 0.8rem;
    padding-bottom: 4px; /* wie Hero */
}

.contentarea h2 {
    text-align: left !important;
}

p {
    color: #333 !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-top: 8px;
    margin-bottom: 1.2rem;
}

.footer-cert-readable {
    background: var(--primary-light);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);

    text-align: center;
}

.footer-cert-readable .footerboxintro {
    .footer-cert-readable .footerboxintro {
    font-weight: 700;
    font-size: 0.75rem !important;   /* gleiche Gr��e wie die anderen */
    margin-bottom: 8px !important;   /* weniger Abstand */
    color: #333;
}

}

.footer-cert-readable-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-cert-readable-logos img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.footer-cert-readable {
    transition: 0.3s ease;
    cursor: pointer;
}

.footer-cert-readable:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.footer-cert-readable:hover .footerboxintro {
    color: #262626;
}

/* =========================
   DESKTOP bleibt unver�ndert
========================= */

/* ================= KUNDENREVIEWS � EINHEITLICHE BOXEN ================= */

.review-hover {
    border-radius: 12px !important;       /* Rund machen */
    min-height: 190px;                    /* gleiche H�he */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.review-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background: #f9fff4;
}

/* ================= KUNDENBEWERTUNGEN WIE KONFERENZTECHNIK ================= */

.review-hover p {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    color: #333 !important;
    margin-bottom: 0.6rem !important;
    font-weight: 400 !important;
}

/* Sterne kompakter */
.review-hover p.text-warning {
    color: #ffc107 !important; /* Bootstrap-Gelb */
    font-size: 1.2rem !important;
    margin-bottom: 0.4rem !important;
}

/* Firmenname (fett) angleichen */
.review-hover p strong {
    font-size: 0.95rem !important;
    color: #333 !important;
    font-weight: 600 !important;
}

html {
    font-size: 16px;
}

body {
    font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 1rem;
    line-height: 1.4;
}

/* ? FOOTER � SAMSUNG FIX: FIXED FOOTER DEAKTIVIEREN ? */
@media (max-width: 768px) {

  .fixed-footer {
      position: static !important;   /* nicht mehr fixiert */
      padding: 20px 0 !important;    /* mehr Platz */
  }

  .footer-inner {
      display: block !important;     /* Flex deaktivieren */
      overflow: visible !important;
  }

  .footer-box,
  .footer-cert-readable {
      width: 100% !important;
      min-width: 100% !important;
      margin-bottom: 12px !important;
      padding: 14px !important;
  }
}

/* ================= EINHEITLICHE BILDH�HE F�R KONFERENZTECHNIK ================= */
.service-img {
    width: 100%;
    max-height: 300px;   /* H�he anpassen */
    object-fit: cover;   /* Bild wird sauber beschnitten */
    border-radius: 8px;  /* gleiche Rundung wie deine anderen Bilder */
}

ul.icon-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.badge-title {
    display: block;
    padding: 15px 20px 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Modal Header in CI-Gr�n */
#infoModal .modal-header {
    background: #DFF2D8; /* dein hellgr�n */
    color: #fff;
    border-bottom: none;
}

/* Titel im Modal */
#infoModal .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Schlie�en-Button wei� */
#infoModal .btn-close {
    filter: invert(1);
}

/* Modal Body */
#infoModal .modal-body {
    font-size: 1rem;
    color: #333;
    padding: 20px;
}

/* Modal Content mit leichtem Schatten */
#infoModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Dienstleistungs-Boxen unter "Unsere Dienstleistungen" */
.p-4.bg-white.rounded.shadow-sm.h-100 {
    border: 1px solid #DFF2D8;              /* gut sichtbarer gr�ner Rahmen */
    border-radius: 12px;                    /* etwas st�rker abgerundet */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);/* deutlicher Schatten */
    background: #ffffff;
    transition: all 0.25s ease-in-out;
}

/* Hover-Effekt */
.p-4.bg-white.rounded.shadow-sm.h-100:hover {
    border-color: #7cbb65;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transform: translateY(-4px);
}

/* ================= FAQ ACCORDION ================= */

.accordion-button {
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background-color: #DFF2D8;
  color: #1c3320;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #7cbb65;
}

.accordion-button::after {
  filter: none;
}

.accordion-item {
  border-color: #cfcfcf;
}
.accordion-button,
.accordion-body {
  font-size: 1.1rem;
}
/* ================= INTERNE TEXTLINKS ================= */
.inline-link {
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none;
}

.inline-link:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline;
}
.dropdown-menu a:hover,
.dropdown-item:hover {
    color: #28a745;
    background-color: transparent;
}