/* =========================================
   INTERKULTURELLE ZENTREN KÖLN — GLOBAL
   Typography / Layout / Header / Loops
========================================= */
: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));
}
/* HEADER */
.iz-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(var(--iz-header-blur));
  backdrop-filter: blur(var(--iz-header-blur));
  border-bottom: 1px solid var(--iz-border);
}
.iz-header-inner {
  width: min(var(--iz-page-width), calc(100% - var(--iz-page-gutter)));
  margin-inline: auto;
  min-height: var(--iz-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.iz-logo img {
  max-height: var(--iz-logo-height);
  width: auto;
}
.iz-logo .elementor-heading-title,
.iz-logo a {
  color: var(--iz-black);
  font-size: var(--iz-body);
  line-height: 1.05;
  font-weight: 800;
}
.iz-nav {
  justify-self: center;
}
.iz-nav .elementor-nav-menu {
  gap: var(--iz-nav-gap);
}
.iz-nav .elementor-item {
  padding: 0 !important;
  color: var(--iz-black) !important;
  font-size: var(--iz-nav-size) !important;
  line-height: 1 !important;
  font-weight: var(--iz-nav-weight) !important;
  transition: color .18s ease;
}
.iz-nav .elementor-item:hover,
.iz-nav .elementor-item.elementor-item-active {
  color: var(--iz-red) !important;
}
.iz-nav .elementor-item::after {
  height: 3px !important;
  background: var(--iz-yellow) !important;
  bottom: -10px !important;
}
.iz-nav .sub-menu {
  margin-top: 18px !important;
  padding: 12px !important;
  background: #fff;
  border: 1px solid var(--iz-border) !important;
  border-radius: var(--iz-radius-md) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.iz-nav .sub-menu .elementor-sub-item {
  padding: 10px 12px !important;
  border-radius: var(--iz-radius-sm);
  font-size: var(--iz-body-sm) !important;
  line-height: 1.25 !important;
}
.iz-nav .sub-menu .elementor-sub-item:hover {
  background: var(--iz-soft);
  color: var(--iz-red) !important;
}
.iz-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.iz-header-search,
.iz-header-lang {
  color: var(--iz-black);
  font-size: var(--iz-body-sm);
  line-height: 1;
  font-weight: 750;
}
.iz-header-search a,
.iz-header-lang a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.iz-header-search:hover,
.iz-header-lang:hover {
  color: var(--iz-red);
}
/* 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: 1024px) {
  .iz-header-inner {
    min-height: var(--iz-header-height-mobile);
    grid-template-columns: auto auto;
  }
  .iz-logo img {
    max-height: var(--iz-logo-height-mobile);
  }
  .iz-header-actions {
    display: none;
  }
  .iz-nav {
    justify-self: end;
  }
  .iz-nav .elementor-menu-toggle {
    padding: 9px;
    background: var(--iz-red) !important;
    color: #fff !important;
    border-radius: var(--iz-radius-pill);
  }
  .iz-nav .elementor-nav-menu--dropdown {
    margin-top: 16px !important;
    padding: 16px !important;
    border: 1px solid var(--iz-border);
    border-radius: 14px;
  }
  .iz-nav .elementor-nav-menu--dropdown .elementor-item {
    padding: 12px 10px !important;
    font-size: var(--iz-body) !important;
  }
}
@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-header-inner,
  .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;
}
/* =========================================================
   IZ HEADER — FINAL STRUCTURE FIX
========================================================= */
.elementor-location-header .iz-header {
  width: 100% !important;
  max-width: none !important;
}
/* Elementor boxed wrapper must not control layout */
.elementor-location-header .iz-header > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}
/* This is the real header grid */
.elementor-location-header .iz-header-inner {
  width: min(var(--iz-page-width, 1180px), calc(100% - var(--iz-page-gutter, 40px))) !important;
  margin-inline: auto !important;
  min-height: var(--iz-header-height, 74px) !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 30px !important;
}
/* Logo */
.elementor-location-header .iz-logo img {
  width: auto !important;
  max-width: none !important;
  max-height: var(--iz-logo-height, 44px) !important;
  object-fit: contain !important;
}
/* Nav */
.elementor-location-header .iz-nav {
  justify-self: center !important;
}
.elementor-location-header .iz-nav .elementor-nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: var(--iz-nav-gap, 24px) !important;
}
.elementor-location-header .iz-nav .elementor-item {
  padding: 0 !important;
  color: var(--iz-black) !important;
  font-size: var(--iz-nav-size, 11px) !important;
  line-height: 1 !important;
  font-weight: var(--iz-nav-weight, 750) !important;
}
.elementor-location-header .iz-nav .elementor-item:hover,
.elementor-location-header .iz-nav .elementor-item.elementor-item-active {
  color: var(--iz-red) !important;
}
/* Elementor pointer is set to none, so hide underline */
.elementor-location-header .iz-nav .elementor-item::after {
  display: none !important;
}
/* Actions */
.elementor-location-header .iz-header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  justify-self: end !important;
}
/* Google Translate */
.elementor-location-header .iz-lang-switcher {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  overflow: hidden !important;
}
.elementor-location-header #google_language_translator {
  height: 34px !important;
  overflow: hidden !important;
  font-size: 0 !important;
}
.elementor-location-header .goog-te-gadget {
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
}
.elementor-location-header .goog-te-gadget span,
.elementor-location-header .goog-te-gadget img,
.elementor-location-header .VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}
.elementor-location-header .goog-te-combo {
  width: 170px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 10px !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: 12px !important;
  font-weight: 750 !important;
}
/* Mobile */
@media (max-width: 1024px) {
  .elementor-location-header .iz-header-inner {
    grid-template-columns: auto auto !important;
    min-height: var(--iz-header-height-mobile, 66px) !important;
  }
  .elementor-location-header .iz-header-actions {
    display: none !important;
  }
  .elementor-location-header .iz-nav {
    justify-self: end !important;
  }
  .elementor-location-header .iz-logo img {
    max-height: var(--iz-logo-height-mobile, 38px) !important;
  }
}