/* GVBE 2026 Modernisierungen */

/* Sicherheits-Meta Tags werden per HTTP-Header gesetzt (Caddy) */

/* Sanftere Schatten und modernere Karten */
.member-card,
.event-card,
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover,
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* Mitglieder-Logo Placeholder */
.member-logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c0392b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

/* Mitglieder-Kontakt Links */
.member-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.member-contact a {
  font-size: 13px;
  color: #c0392b;
  text-decoration: none;
}

.member-contact a:hover { text-decoration: underline; }

/* Loading State */
.loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  height: 80px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Admin-Link (nur sichtbar wenn eingeloggt) */
.admin-hint {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: rgba(44,62,80,.9);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
  z-index: 999;
  backdrop-filter: blur(4px);
}
