/* VeynoSmart — Digitale Visitenkarte */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8f9fa;
  color: #111111;
  min-height: 100vh;
}

/* Header */
.vc-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 20px;
  text-align: center;
}
.vc-logo {
  height: 32px;
  width: auto;
}

/* Karten-Container */
.vc-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

/* Profilfoto */
.vc-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.vc-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 3px solid #ffffff;
}

/* Name & Rolle */
.vc-name {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #111111;
  margin-bottom: 4px;
}
.vc-role {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: #6b7280;
  margin-bottom: 10px;
}
.vc-tagline {
  font-size: 0.9375rem;
  text-align: center;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 28px;
  font-style: italic;
}

/* Action-Buttons */
.vc-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.vc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.vc-btn:active { transform: scale(0.98); opacity: 0.9; }

.vc-btn-primary {
  background: #22c55e;
  color: #ffffff;
}
.vc-btn-primary:hover { background: #16a34a; }

.vc-btn-secondary {
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #d1d5db;
}
.vc-btn-secondary:hover { border-color: #22c55e; color: #22c55e; }

/* Social Icons */
.vc-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.vc-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  color: #374151;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.vc-social-link:hover { border-color: #22c55e; color: #22c55e; }
.vc-social-link svg { width: 20px; height: 20px; fill: currentColor; }

/* vCard CTA */
.vc-save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.vc-save:hover { background: #1f2937; }
.vc-save svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Footer */
.vc-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8125rem;
  color: #9ca3af;
}
.vc-footer a { color: #22c55e; text-decoration: none; }
