/* ============================================================
   VSK Kontakt Plugin  –  v1.0.0
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Root ──────────────────────────────────────────────────────── */
.vsk-kontakt {
  --orange:    #F97316;
  --orange-l:  #FFF7ED;
  --yellow:    #EAB308;
  --yellow-l:  #FEFCE8;
  --blue:      #2563EB;
  --blue-l:    #EFF6FF;
  --green:     #16A34A;
  --green-l:   #F0FDF4;
  --teal:      #0D9488;
  --teal-l:    #F0FDFA;
  --purple:    #7C3AED;
  --purple-l:  #F5F3FF;
  --ink:       #1E293B;
  --sub:       #64748B;
  --line:      #E2E8F0;
  --r-hero:    28px;
  --r-card:    20px;
  --font:      'Nunito', ui-rounded, system-ui, sans-serif;

  font-family: var(--font);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 72px;
}
.vsk-kontakt *,
.vsk-kontakt *::before,
.vsk-kontakt *::after { box-sizing: border-box; margin: 0; padding: 0; }
.vsk-kontakt h1,
.vsk-kontakt h2 { font-family: var(--font); font-weight: 900; }
.vsk-kontakt a  { text-decoration: none; color: inherit; }

/* ── Hero ──────────────────────────────────────────────────────── */
.vsk-kontakt__hero {
  position: relative;
  overflow: hidden;
  /* Gradient wird per inline-style aus den Plugin-Einstellungen gesetzt */
  background: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #EF4444 100%);
  border-radius: var(--r-hero);
  padding: 52px 52px 52px 52px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.vsk-kontakt__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating deco items */
.vsk-kontakt__hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.vsk-kontakt__deco-item {
  position: absolute;
  font-size: 28px;
  opacity: 0.25;
  animation: vsk-float 6s ease-in-out infinite;
}
.vsk-kontakt__deco-item--1 { top: 10%;  left:  6%;  animation-delay: 0s;    font-size: 24px; }
.vsk-kontakt__deco-item--2 { top: 60%;  left: 12%;  animation-delay: 1.2s;  font-size: 32px; }
.vsk-kontakt__deco-item--3 { top: 15%;  right: 22%; animation-delay: 2.4s;  font-size: 22px; }
.vsk-kontakt__deco-item--4 { bottom: 10%; left: 30%; animation-delay: 0.8s; font-size: 30px; }
.vsk-kontakt__deco-item--5 { bottom: 20%; right: 28%; animation-delay: 1.8s; font-size: 26px; }

@keyframes vsk-float {
  0%, 100% { transform: translateY(0)    rotate(-4deg); }
  50%       { transform: translateY(-10px) rotate(4deg);  }
}

.vsk-kontakt__hero-inner { position: relative; z-index: 1; }
.vsk-kontakt__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}
.vsk-kontakt__title {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.vsk-kontakt__subtitle {
  font-size: 15px;
  font-weight: 700;
  opacity: 0.8;
  max-width: 320px;
}
.vsk-kontakt__hero-emoji {
  font-size: 100px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  animation: vsk-wobble 4s ease-in-out infinite;
}
@keyframes vsk-wobble {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg)  scale(1.05); }
}

@media (max-width: 640px) {
  .vsk-kontakt__hero         { padding: 36px 28px; }
  .vsk-kontakt__title        { font-size: 40px; }
  .vsk-kontakt__hero-emoji   { font-size: 64px; }
}
@media (max-width: 420px) {
  .vsk-kontakt__hero-emoji   { display: none; }
}

/* ── Cards Grid ────────────────────────────────────────────────── */
.vsk-kontakt__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 560px) {
  .vsk-kontakt__cards { grid-template-columns: 1fr; }
}

/* Card base */
.vsk-kontakt__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 16px;
  border-radius: var(--r-card);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.vsk-kontakt__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  pointer-events: none;
}
.vsk-kontakt__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.vsk-kontakt__card:hover::after { background: rgba(255,255,255,0.15); }

/* Color variants */
.vsk-kontakt__card--orange { background: var(--orange-l); border-color: #FDBA74; }
.vsk-kontakt__card--yellow { background: var(--yellow-l); border-color: #FDE047; }
.vsk-kontakt__card--blue   { background: var(--blue-l);   border-color: #BFDBFE; }
.vsk-kontakt__card--green  { background: var(--green-l);  border-color: #86EFAC; }
.vsk-kontakt__card--teal   { background: var(--teal-l);   border-color: #99F6E4; }
.vsk-kontakt__card--purple { background: var(--purple-l); border-color: #DDD6FE; }

/* Icon circle */
.vsk-kontakt__card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.vsk-kontakt__card-icon-wrap--orange { background: #FED7AA; }
.vsk-kontakt__card-icon-wrap--yellow { background: #FEF08A; }
.vsk-kontakt__card-icon-wrap--blue   { background: #BFDBFE; }
.vsk-kontakt__card-icon-wrap--green  { background: #BBF7D0; }
.vsk-kontakt__card-icon-wrap--teal   { background: #99F6E4; }
.vsk-kontakt__card-icon-wrap--purple { background: #DDD6FE; }

.vsk-kontakt__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vsk-kontakt__card-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sub);
}
.vsk-kontakt__card-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vsk-kontakt__card-sub {
  font-size: 12px;
  color: var(--sub);
  font-weight: 600;
}
.vsk-kontakt__card-arrow {
  font-size: 18px;
  font-weight: 900;
  color: var(--sub);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.vsk-kontakt__card:hover .vsk-kontakt__card-arrow {
  opacity: 0.8;
  transform: translateX(3px);
}

/* ── Info Banner ───────────────────────────────────────────────── */
.vsk-kontakt__banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border: 2px solid #BFDBFE;
  border-radius: var(--r-card);
  padding: 18px 24px;
  margin-bottom: 32px;
}
.vsk-kontakt__banner-icon { font-size: 32px; flex-shrink: 0; }
.vsk-kontakt__banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vsk-kontakt__banner-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.vsk-kontakt__banner-text span {
  font-size: 13px;
  color: var(--sub);
  font-weight: 600;
}

/* ── Map ───────────────────────────────────────────────────────── */
.vsk-kontakt__map-section { }
.vsk-kontakt__map-heading {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vsk-kontakt__map-wrap {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 3px solid var(--line);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.vsk-kontakt__map {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}
.vsk-kontakt__map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
  transition: background 0.15s, transform 0.15s;
}
.vsk-kontakt__map-link:hover {
  background: #fff;
  transform: scale(1.03);
}
