/* ============================================
   Königreich Filme – Glasmorphismus Komponenten
   ============================================ */

/* --- Base Glass (auf dunklem Grund) --- */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* --- Glass auf hellem Grund --- */
.glass-light {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

/* --- Glass Button --- */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glass:hover {
  background: rgba(207, 150, 62, 0.18);
  border-color: rgba(207, 150, 62, 0.5);
  color: var(--crown-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(207, 150, 62, 0.2);
}

/* --- Filter Pill Tab --- */
.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  user-select: none;
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
  background: rgba(207, 150, 62, 0.15);
  border-color: var(--crown-gold);
  color: var(--crown-gold);
  font-weight: 600;
}

/* --- Glass Contact Tile --- */
.contact-tile.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.contact-tile.glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(207, 150, 62, 0.4);
}
