/* katalog-theme.css – Standalone-Layout fuer /katalog/ (ohne WordPress) */
/* Quattlender IT Solutions CI: #1c1b1a, #004f9f, #0bbbef, #f5f5f5 */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: 'Gotham Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1c1b1a;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #004f9f; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── Skip Link ── */
.qits-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #004f9f;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 0.9rem;
}
.qits-skip-link:focus { top: 0; }

/* ── Header ── */
.kat-site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.kat-site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.kat-site-logo img {
  height: 50px;
  width: auto;
}
.kat-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1c1b1a;
}
.kat-site-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
.kat-site-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1c1b1a;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.kat-site-nav a:hover,
.kat-site-nav a.active {
  background: #f0f7ff;
  color: #004f9f;
  text-decoration: none;
}

/* ── Breadcrumb Bar ── */
.kat-breadcrumb-bar {
  background: #004f9f;
  color: #fff;
  padding: 20px 24px;
}
.kat-breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.kat-breadcrumb-bar h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* ── Main Content ── */
main {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
}

/* ── Disclaimer Bar ── */
.kat-disclaimer-bar {
  background: #f0f0f0;
  padding: 16px 24px;
}
.kat-disclaimer-inner {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

/* ── Footer ── */
.kat-site-footer {
  background: #1c1b1a;
  color: #ccc;
  padding: 0;
}
.kat-site-footer a {
  color: #ddd;
}
.kat-site-footer a:hover {
  color: #fff;
}
.kat-site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.kat-footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}
.kat-footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 12px;
}
.kat-footer-heading {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #999;
  margin-bottom: 12px;
}
.kat-footer-pages ul,
.kat-footer-legal ul {
  list-style: none;
}
.kat-footer-pages li,
.kat-footer-legal li {
  margin-bottom: 8px;
}
.kat-footer-pages a,
.kat-footer-legal a {
  font-size: 0.9rem;
}
.kat-footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px 24px;
}
.kat-footer-bottom p {
  font-size: 0.8rem;
  color: #888;
}

/* ── Cookie Banner ── */
#qits-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1b1a;
  color: #fff;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.qits-cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.qits-cookie-text {
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}
.qits-cookie-text a { color: #0bbbef; }
.qits-cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.qits-cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.qits-cookie-btn-primary {
  background: #004f9f;
  color: #fff;
}
.qits-cookie-btn-primary:hover { background: #003d7a; }
.qits-cookie-btn-secondary {
  background: #333;
  color: #ccc;
}
.qits-cookie-btn-secondary:hover { background: #444; }

/* ── Back to Top ── */
#qits-back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #004f9f;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, background .2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
#qits-back-to-top:hover { background: #003d7a; }
#qits-back-to-top.qits-btt-visible {
  opacity: 1;
  visibility: visible;
}

/* ── Phone Button ── */
.qits-phone-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0bbbef;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11,187,239,.4);
  z-index: 999;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.qits-phone-btn:hover {
  background: #0aa3d4;
  transform: scale(1.1);
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .kat-site-header-inner {
    padding: 10px 16px;
  }
  .kat-site-logo img {
    height: 36px;
  }
  .kat-menu-toggle {
    display: block;
  }
  .kat-site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #004f9f;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    z-index: 999;
  }
  .kat-site-nav.open {
    display: block;
  }
  .kat-site-nav ul {
    flex-direction: column;
    padding: 8px 0;
  }
  .kat-site-nav a {
    padding: 12px 24px;
    border-radius: 0;
  }

  .kat-breadcrumb-bar {
    padding: 16px;
  }
  .kat-breadcrumb-bar h1 {
    font-size: 1.2rem;
  }

  main {
    padding: 16px;
  }

  .kat-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 24px;
  }

  .qits-cookie-inner {
    padding: 12px 16px;
    flex-direction: column;
    text-align: center;
  }
  .qits-cookie-buttons {
    width: 100%;
  }
  .qits-cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .kat-breadcrumb-bar h1 {
    font-size: 1.1rem;
  }
}
