/* INVOXA: Glass effects, animations, invoice preview, badges and cards */

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.03);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.05);
}
.invoice-logo-text {
  font-size: 1.875rem;
  font-weight: 900;
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #4f46e5; /* Fallback für sehr alte Browser */
}
/* ===== ANIMATIONEN ===== */
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

.hover-lift {
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(79, 70, 229, 0.15);
}

/* ===== RECHNUNGSVORSCHAU (A4) ===== */
.invoice-a4 {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f4f8;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 210mm;
  margin: 0 auto;
  position: relative;
}

.invoice-a4:hover {
  box-shadow: 0 25px 45px -12px rgba(79, 70, 229, 0.12);
  border-color: var(--primary-light);
}

/* ===== STATUS BADGES ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: all 0.15s;
}

.status-badge:hover {
  transform: scale(1.05);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(79,70,229,0.02) 0%, rgba(124,58,237,0.02) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover::after {
  opacity: 1;
}

