/* ====== Custom Styles for Foerena ====== */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* Hero background pattern */
.hero-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating animation for hero decorations */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.03); }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 10s ease-in-out infinite;
  animation-delay: 2s;
}

/* Selection color */
::selection {
  background-color: #3b82f6;
  color: white;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* PII protection: rendered via CSS only, not in HTML DOM */
.pii-rep::after { content: "\B300\D45C: \C804\BBF8\D654"; }
.pii-name::after { content: "\C804\BBF8\D654"; }
.pii-addr::after { content: "\ACBD\AE30\B3C4 \C218\C6D0\C2DC \C601\D1B5\AD6C\A\AD11\AD50\D638\C218\ACF5\C6D0\B85C 300, 101-1305"; white-space: pre-line; }
.pii-addr-short::after { content: "\ACBD\AE30\B3C4 \C218\C6D0\C2DC \C601\D1B5\AD6C"; }
.pii-email::after { content: "\63\6F\6E\74\61\63\74\40\66\6F\65\72\65\6E\61\2E\63\6F\6D"; }
.pii-brn::after { content: "\36\38\33\2D\31\36\2D\30\32\35\31\38"; }
