/*
 * IKZ COMPLETE CLEAN CSS
 * Consolidated from the former Global, Homepage, Standorte, Karte,
 * Info, Management and Single Centre CSS blocks.
 * Generated: 2026-07-17
 */

/* =========================================
   INTERKULTURELLE ZENTREN KÖLN — GLOBAL
   Typography / Layout / Desktop Header / Loops
========================================= */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
:root {
  /* Colors */
  --iz-red: #e30613;
  --iz-yellow: #ffe500;
  --iz-green: #4b9f38;
  --iz-black: #111111;
  --iz-text: #1f1f1f;
  --iz-muted: #666666;
  --iz-border: #e6e6e6;
  --iz-border-light: #d8d8d8;
  --iz-soft: #f7f7f5;
  --iz-white: #ffffff;
  /* Radius */
  --iz-radius-sm: 6px;
  --iz-radius-md: 12px;
  --iz-radius-lg: 24px;
  --iz-radius-pill: 999px;
  /* Layout */
  --iz-container: 1180px;
  --iz-page-width: 1180px;
  --iz-page-gutter: 40px;
  --iz-section: clamp(52px, 6.4vw, 96px);
  --iz-space-section: 68px;
  --iz-space-section-sm: 58px;
  /* Typography */
  --iz-font: "Inter", "Arial", sans-serif;
  --iz-h1: clamp(37px, 5.6vw, 74px);
  --iz-h2: clamp(26px, 3.2vw, 45px);
  --iz-h3: clamp(18px, 1.8vw, 26px);
  --iz-h4: 18px;
  --iz-body-lg: 16px;
  --iz-body: 14px;
  --iz-body-sm: 12px;
  --iz-small: 11px;
  --iz-lh-heading: 1.05;
  --iz-lh-body: 1.55;
  /* Header */
  --iz-header-height: 74px;
  --iz-header-height-mobile: 66px;
  --iz-logo-height: 44px;
  --iz-logo-height-mobile: 38px;
  --iz-nav-gap: 24px;
  --iz-nav-size: var(--iz-body-sm);
  --iz-nav-weight: 750;
  --iz-header-blur: 16px;
}
/* BASE */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--iz-font);
  color: var(--iz-text);
  background: var(--iz-white);
  font-size: var(--iz-body-lg);
  line-height: var(--iz-lh-body);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  margin: 0;
}
strong {
  font-weight: 750;
}
/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--iz-black);
  line-height: var(--iz-lh-heading);
  letter-spacing: -0.035em;
}
h1 {
  font-size: var(--iz-h1);
  font-weight: 800;
}
h2 {
  font-size: var(--iz-h2);
  font-weight: 800;
}
h3 {
  font-size: var(--iz-h3);
  font-weight: 750;
}
h4 {
  font-size: var(--iz-h4);
  font-weight: 750;
}
/* HELPERS */
.iz-yellow {
  color: var(--iz-yellow);
}
.iz-accent-yellow {
  color: var(--iz-yellow);
}
.iz-accent-red {
  color: var(--iz-red);
}
.iz-bg-yellow {
  background: var(--iz-yellow);
}
.iz-bg-red {
  background: var(--iz-red);
  color: var(--iz-white);
}
.iz-bg-soft {
  background: var(--iz-soft);
}
.iz-container,
.iz-hero-inner,
.iz-map-inner,
.iz-quick-inner,
.iz-news-inner,
.iz-film-inner {
  width: min(var(--iz-page-width), calc(100% - var(--iz-page-gutter)));
  margin-inline: auto;
}
.iz-section {
  padding-block: var(--iz-section);
}
.iz-section-sm {
  padding-block: clamp(32px, 4.8vw, 64px);
}
.iz-grid {
  display: grid;
  gap: 24px;
}
.iz-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.iz-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.iz-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   IKZ DESKTOP HEADER
   Desktop only. The future mobile header/footer system should
   use separate classes and its own stylesheet.
========================================================= */

@media (min-width: 901px) {
  .iz-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(17,17,17,.08);

    -webkit-backdrop-filter: blur(var(--iz-header-blur));
    backdrop-filter: blur(var(--iz-header-blur));
  }

  body.admin-bar .iz-header {
    top: 32px;
  }

  .iz-header-inner {
    width: min(var(--iz-page-width), calc(100% - var(--iz-page-gutter)));
    min-height: 76px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(76px, auto) minmax(0, 1fr) minmax(180px, auto);
    align-items: center;
    gap: clamp(24px, 3vw, 42px);
  }

  /* Logo */

  .iz-logo {
    justify-self: start;
    min-width: 0;
  }

  .iz-logo,
  .iz-logo a,
  .iz-logo .elementor-widget-container {
    display: inline-flex;
    align-items: center;
  }

  .iz-logo img {
    display: block;
    width: auto;
    max-width: 76px;
    max-height: 48px;
    object-fit: contain;
  }

  /* Main navigation */

  .iz-nav {
    justify-self: center;
    min-width: 0;
  }

  .iz-nav .elementor-nav-menu--main,
  .iz-nav .elementor-nav-menu--main > .elementor-nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.1vw, 32px);
  }

  .iz-nav .elementor-nav-menu--main > .elementor-nav-menu > li {
    position: relative;
  }

  .iz-nav .elementor-item {
    position: relative;

    min-height: 76px;
    padding: 0 !important;

    display: inline-flex !important;
    align-items: center;
    gap: 7px;

    color: var(--iz-black) !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    letter-spacing: -.01em;
    text-decoration: none !important;
    white-space: nowrap;

    transition: color .18s ease;
  }

  .iz-nav .elementor-item:hover,
  .iz-nav .elementor-item:focus-visible,
  .iz-nav .elementor-item.elementor-item-active,
  .iz-nav .current-menu-item > .elementor-item,
  .iz-nav .current-menu-ancestor > .elementor-item {
    color: var(--iz-red) !important;
  }

  /* Remove Elementor's default animated underline. */

  .iz-nav .elementor-item::after {
    display: none !important;
  }

  /* Controlled active / hover line. */

  .iz-nav .elementor-item::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;

    height: 3px;

    background: var(--iz-yellow);

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform .18s ease;
  }

  .iz-nav .elementor-item:hover::before,
  .iz-nav .elementor-item:focus-visible::before,
  .iz-nav .elementor-item.elementor-item-active::before,
  .iz-nav .current-menu-item > .elementor-item::before,
  .iz-nav .current-menu-ancestor > .elementor-item::before {
    transform: scaleX(1);
  }

  .iz-nav .sub-arrow {
    margin-left: 0 !important;
  }

  .iz-nav .sub-arrow svg {
    width: 11px;
    height: 11px;
  }

  /* Dropdown */

  .iz-nav .sub-menu {
    min-width: 330px !important;
    margin-top: 0 !important;
    padding: 8px !important;

    background: #fff !important;

    border: 1px solid rgba(17,17,17,.10) !important;
    border-radius: 12px !important;

    box-shadow: 0 20px 55px rgba(17,17,17,.13) !important;
  }

  .iz-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }

  .iz-nav .sub-menu .elementor-sub-item {
    min-height: 46px;
    padding: 11px 14px !important;

    display: flex !important;
    align-items: center;

    background: transparent !important;
    color: var(--iz-text) !important;

    border: 0 !important;
    border-radius: 8px !important;

    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    white-space: normal;

    transition: background .16s ease, color .16s ease;
  }

  .iz-nav .sub-menu .elementor-sub-item:hover,
  .iz-nav .sub-menu .elementor-sub-item:focus-visible,
  .iz-nav .sub-menu .elementor-sub-item.elementor-item-active,
  .iz-nav .sub-menu .current-menu-item > .elementor-sub-item {
    background: var(--iz-soft) !important;
    color: var(--iz-red) !important;
  }

  /* Right-side header actions */

  .iz-header-actions {
    justify-self: end;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .iz-header .iz-lang-switcher .goog-te-combo {
    width: 180px !important;
    height: 38px !important;
    padding: 0 34px 0 12px !important;

    background: #fff !important;
    color: var(--iz-red) !important;

    border: 1px solid rgba(227,6,19,.45) !important;
    border-radius: 8px !important;

    font-size: 12px !important;
    font-weight: 750 !important;

    cursor: pointer;
  }

  .iz-header .iz-lang-switcher .goog-te-combo:hover,
  .iz-header .iz-lang-switcher .goog-te-combo:focus {
    border-color: var(--iz-red) !important;
    outline: none;
  }
}

/* =========================================================
   MOBILE NAVIGATION BOUNDARY
   Do not add mobile header/footer styling to these desktop
   classes. The next mobile system should use classes such as:
   .iz-mobile-header, .iz-mobile-nav and .iz-mobile-menu.
========================================================= */

@media (max-width: 900px) {
  .iz-header {
    position: relative;
    top: auto;
  }
}

/* GOOGLE TRANSLATE */
.iz-lang-switcher {
  display: inline-flex;
  align-items: center !important;
}
.iz-lang-switcher::before,
.iz-lang-switcher::after {
  display: none !important;
  content: none !important;
}
.iz-lang-switcher .goog-te-gadget {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0 !important;
  line-height: 1 !important;
}
.iz-lang-switcher .goog-te-gadget img,
.iz-lang-switcher .goog-te-gadget span {
  display: none !important;
}
.iz-lang-switcher .goog-te-combo {
  width: 180px !important;
  height: 34px !important;
  padding: 0 12px !important;
  background: #fff !important;
  color: var(--iz-red) !important;
  border: 1px solid var(--iz-red) !important;
  border-radius: 4px !important;
  font-family: var(--iz-font) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}
.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}
/* BUTTONS */
.iz-btn,
.elementor-button {
  border-radius: var(--iz-radius-pill) !important;
  padding: 11px 18px !important;
  font-weight: 750 !important;
  font-size: var(--iz-body-sm) !important;
  line-height: 1 !important;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.iz-btn:hover,
.elementor-button:hover {
  transform: translateY(-1px);
}
.iz-btn-primary .elementor-button,
.iz-btn-primary {
  background: var(--iz-yellow) !important;
  color: var(--iz-black) !important;
}
.iz-btn-red .elementor-button,
.iz-btn-red {
  background: var(--iz-red) !important;
  color: var(--iz-white) !important;
}
.iz-btn-outline .elementor-button,
.iz-btn-outline {
  background: transparent !important;
  color: var(--iz-black) !important;
  border: 1px solid var(--iz-black) !important;
}
/* CARDS */
.iz-card {
  background: var(--iz-white);
  border: 1px solid var(--iz-border);
  border-radius: var(--iz-radius-md);
  padding: 22px;
}
.iz-card-soft {
  background: var(--iz-soft);
  border-radius: var(--iz-radius-md);
  padding: 26px;
}
.iz-card-link {
  transition: border-color .2s ease, transform .2s ease;
}
.iz-card-link:hover {
  border-color: var(--iz-red);
  transform: translateY(-2px);
}
/* SECTION HEADER */
.iz-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.iz-section-kicker {
  margin-bottom: 8px;
  color: var(--iz-red);
  font-size: var(--iz-small);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.iz-section-link {
  color: var(--iz-red);
  font-size: var(--iz-body-sm);
  font-weight: 750;
}
/* IMAGES */
.iz-image {
  overflow: hidden;
  border-radius: var(--iz-radius-md);
}
.iz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* NEWS FEATURED LOOP */
.iz-news-feature {
  height: 35vh;
  background: #fff;
  border: 1px solid var(--iz-border-light);
  overflow: hidden;
  color: var(--iz-black);
  text-decoration: none;
}
.iz-news-feature-image {
  min-height: 100% !important;
}
.iz-news-feature-image img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  display: block;
}
.iz-news-feature-content {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iz-news-feature-date {
  margin-bottom: 16px;
  color: var(--iz-muted);
  font-size: var(--iz-body-sm);
  font-weight: 700;
}
.iz-news-feature-title {
  margin-bottom: 22px;
}
.iz-news-feature-title .elementor-heading-title {
  font-size: clamp(16px, 2vw, 32px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 700;
}
.iz-news-feature-excerpt {
  max-width: 460px;
  margin-bottom: 28px;
  color: #333;
  font-size: var(--iz-body-sm);
  line-height: 1.45;
}
.iz-news-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #333;
  font-size: var(--iz-body-sm);
  font-weight: 800;
}
.iz-news-feature-link::after {
  content: "→";
}
.iz-news-feature:hover {
  background: #fafafa;
}
.iz-news-feature:hover .iz-news-feature-title {
  color: var(--iz-red);
}
/* NEWS LIST LOOP */
.iz-news-item {
  display: block;
  min-height: 100% !important;
  padding: 27px 30px;
  border-bottom: 1px solid var(--iz-border-light);
  color: var(--iz-black);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.iz-news-item:last-child {
  border-bottom: 0;
}
.iz-news-item-date {
  margin-bottom: 14px;
  color: var(--iz-muted);
  font-size: var(--iz-small);
  font-weight: 500;
}
.iz-news-item-title {
  margin-bottom: 20px;
}
.iz-news-item-title .elementor-heading-title {
  font-size: var(--iz-body);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 500;
}
.iz-news-item-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--iz-small);
  font-weight: 800;
}
.iz-news-item:hover {
  background: #fafafa;
}
.iz-news-item:hover .iz-news-item-title {
  color: var(--iz-red);
}
/* LOOP BUTTON FIX */
.iz-news-feature-link,
.iz-news-feature-link a,
.iz-news-feature-link .elementor-button,
.iz-news-item-link,
.iz-news-item-link a,
.iz-news-item-link .elementor-button {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  padding: 0 !important;
  padding-top: 8px !important;
  background: transparent !important;
  color: var(--iz-black) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: var(--iz-small) !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.iz-news-feature-link .elementor-button-text,
.iz-news-item-link .elementor-button-text {
  color: inherit !important;
}
.iz-news-feature:hover .iz-news-feature-link,
.iz-news-feature:hover .iz-news-feature-link a,
.iz-news-feature:hover .iz-news-feature-link .elementor-button,
.iz-news-item:hover .iz-news-item-link,
.iz-news-item:hover .iz-news-item-link a,
.iz-news-item:hover .iz-news-item-link .elementor-button {
  color: var(--iz-red) !important;
}
/* =========================================================
   IZ FOOTER — MINIMAL
========================================================= */
.iz-footer {
  padding: 88px 0 42px;
  background: #fff;
  border-top: 1px solid var(--iz-border);
}
.iz-footer-inner {
  width: min(var(--iz-page-width), calc(100% - var(--iz-page-gutter)));
  margin-inline: auto;
}
.iz-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.2fr);
  gap: 88px;
  align-items: center;
}
.iz-footer-title .elementor-heading-title {
  margin: 0;
  color: var(--iz-black);
  font-size: var(--iz-h2);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 850;
}
.iz-footer-divider {
  width: 52px;
  height: 4px;
  margin: 28px 0 26px;
  background: var(--iz-red);
}
.iz-footer-text p,
.iz-footer-text .elementor-widget-container {
  max-width: 560px;
  margin: 0;
  color: var(--iz-text);
  font-size: var(--iz-body);
  line-height: 1.75;
  font-weight: 450;
}
.iz-footer-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 42px;
  margin-bottom: 52px;
}
.iz-footer-logos img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}
.iz-footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 36px;
  border-left: 1px solid var(--iz-border);
}
.iz-footer-contact .elementor-icon {
  color: var(--iz-red);
  font-size: 20px;
}
.iz-footer-contact p,
.iz-footer-contact .elementor-widget-container {
  margin: 0;
  color: var(--iz-text);
  font-size: var(--iz-body);
  line-height: 1.45;
}
.iz-footer-contact a {
  color: var(--iz-black);
  font-weight: 800;
  text-decoration: none;
}
.iz-footer-bottom {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--iz-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.iz-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  color: var(--iz-text);
  font-size: var(--iz-body);
}
.iz-footer-legal a {
  color: var(--iz-red);
  text-decoration: none;
  font-weight: 600;
}
.iz-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.iz-footer-socials .elementor-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--iz-black);
  border: 1px solid var(--iz-black);
  border-radius: 999px;
  font-size: 17px;
  transition: .18s ease;
}
.iz-footer-socials .elementor-icon:hover {
  color: #fff;
  background: var(--iz-red);
  border-color: var(--iz-red);
}
/* Responsive */
@media (max-width: 900px) {
  .iz-footer {
    padding: 64px 0 36px;
  }
  .iz-footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .iz-footer-contact {
    padding-left: 0;
    border-left: 0;
  }
  .iz-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .iz-footer-logos {
    gap: 24px;
    flex-wrap: wrap;
  }
  .iz-footer-logos img {
    max-height: 54px;
  }
  .iz-footer-legal {
    gap: 16px;
    font-size: var(--iz-body-sm);
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .iz-grid-2,
  .iz-grid-3,
  .iz-grid-4 {
    grid-template-columns: 1fr;
  }
  .iz-section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  :root {
    --iz-page-gutter: 28px;
  }
  .iz-container {
    width: calc(100% - 28px);
  }
  h1 {
    font-size: clamp(32px, 10.4vw, 48px);
  }
  h2 {
    font-size: clamp(24px, 8vw, 35px);
  }
  .iz-card,
  .iz-card-soft {
    padding: 18px;
  }
}
/* =========================================================
   IZ CENTER CARD — LOOP ITEM
========================================================= */
.iz-center-card {
  position: relative;
  height: 100%;
  min-height: 285px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--iz-border-light);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.iz-center-card:hover {
  transform: translateY(-3px);
  border-color: #111;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
/* Image */
.iz-center-image {
  flex: 0 0 auto;
  height: 190px;
  overflow: hidden;
  background: #efefef;
}
.iz-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Content */
.iz-center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 16px 16px;
}
.iz-center-district {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 0;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.iz-center-district::before {
  font-family: "Font Awesome 6 Free";
  content: "\f3c5";
  font-weight: 900;
  font-size: 11px;
  color: #9b9b9b;
  margin: 0;
}
.iz-center-title,
.iz-center-title .elementor-heading-title {
  margin: 0 !important;
  color: #111 !important;
  font-size: 20px !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em;
  font-weight: 850 !important;
}
/* Arrow */
.iz-center-arrow {
  margin-top: auto;
  align-self: flex-end;
  color: #111;
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}
.iz-center-arrow::after {
  content: "→";
}
.iz-center-card:hover .iz-center-title,
.iz-center-card:hover .iz-center-title .elementor-heading-title,
.iz-center-card:hover .iz-center-arrow {
  color: var(--iz-red) !important;
}
/* Hide accidental Elementor button */
.iz-center-card .elementor-widget-button,
.iz-center-card .elementor-button-wrapper,
.iz-center-card .elementor-button {
  display: none !important;
}

/* =========================================================
