/* ==========================================================================
   kolosseum-tickets.de — Site-Chrome (Header, Navigation, Footer)
   Die Inhalts-Bloecke bringen ihre Styles selbst mit (kt-block, kt-ep, …) —
   zeichengenau aus der WordPress-Fassung uebernommen.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2A1F17;
  background: #fff;
  line-height: 1.6;
}

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

/* ---------------- Header ---------------- */

.kt-site-header {
  background: #fff;
  border-bottom: 1px solid #E8DDD0;
  position: relative;
  z-index: 100;
}
.kt-site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.kt-site-logo { display: inline-flex; align-items: center; }
.kt-site-logo img { width: 220px; height: auto; display: block; }

.kt-nav-toggle {
  display: none;
  background: none; border: none; padding: 8px; cursor: pointer; color: #2A1F17;
}

.kt-site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.kt-nav-item { position: relative; }
.kt-nav-item > a,
.kt-nav-sub-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  font-size: 15px; font-weight: 600; color: #2A1F17;
  text-decoration: none; background: none; border: none; cursor: pointer;
  font-family: inherit; border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.kt-nav-item > a:hover, .kt-nav-sub-toggle:hover { background: #FFF8F0; color: #B26A1B; }
.kt-nav-item.is-active > a, .kt-nav-item.is-active .kt-nav-sub-toggle { color: #B26A1B; }

.kt-nav-sub {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 230px;
  background: #fff; border: 1px solid #E8DDD0; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 6px !important;
  flex-direction: column; gap: 0 !important;
}
.kt-nav-item--sub:hover .kt-nav-sub,
.kt-nav-item--sub.is-sub-open .kt-nav-sub { display: flex; }
.kt-nav-sub li { width: 100%; }
.kt-nav-sub a {
  display: block; padding: 9px 12px; font-size: 14px; font-weight: 500;
  color: #2A1F17; text-decoration: none; border-radius: 6px;
}
.kt-nav-sub a:hover { background: #FFF8F0; color: #B26A1B; }
.kt-nav-sub a[aria-current="page"] { color: #B26A1B; font-weight: 700; }

@media (max-width: 900px) {
  .kt-nav-toggle { display: inline-flex; }
  .kt-site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #E8DDD0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  }
  .kt-site-nav.is-open { display: block; }
  .kt-site-nav ul { flex-direction: column; padding: 10px 16px 16px; }
  .kt-nav-item > a, .kt-nav-sub-toggle { width: 100%; justify-content: flex-start; padding: 12px 10px; }
  .kt-nav-sub {
    position: static; display: none; border: none; box-shadow: none;
    padding: 0 0 0 16px !important; min-width: 0;
  }
  .kt-nav-item--sub.is-sub-open .kt-nav-sub { display: flex; }
  .kt-nav-item--sub:hover .kt-nav-sub { display: none; }
  .kt-nav-item--sub.is-sub-open:hover .kt-nav-sub { display: flex; }
}

/* ---------------- Footer ---------------- */

.kt-site-footer {
  background: #2A1F17;
  color: #D9CBB8;
  margin-top: 56px;
}
.kt-site-footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 32px 20px 40px;
  text-align: center;
}
.kt-footer-note { font-size: 14px; margin: 0 0 16px; color: #D9CBB8; }
.kt-footer-links { margin: 0 0 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.kt-footer-links a { color: #fff; text-decoration: none; font-size: 14px; }
.kt-footer-links a:hover { text-decoration: underline; color: #D4863A; }
.kt-footer-copy { font-size: 13px; color: #9c8d7a; margin: 0; }

/* Anker-Sprünge nicht unter dem Header verstecken */
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 16px; }
