@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* Creative / Artist — warm peach + vibrant violet */
.theme-1192 {
  --bio-font-heading: "Space Grotesk", sans-serif;
  --bio-font-body: "Space Grotesk", sans-serif;
  --bio-page-bg: #f0e5e0;
  --bio-card-bg: #f0e5e0;
  --bio-text-primary: #2d2235;
  --bio-text-secondary: #4d3d58;
  --bio-text-muted: #a89aaf;
  --bio-card-shadow:
    10px 10px 22px #d4cac4,
    -10px -10px 22px #ffffff,
    inset 2px 2px 5px rgba(255, 255, 255, 0.8),
    inset -3px -3px 6px rgba(175, 155, 148, 0.28);
  --bio-avatar-shadow:
    8px 8px 16px #d4cac4,
    -8px -8px 16px #ffffff,
    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
    inset -2px -2px 4px rgba(175, 155, 148, 0.28);
  --bio-btn-bg: #8b5cf6;
  --bio-btn-text: #ffffff;
  --bio-btn-shadow:
    6px 6px 12px rgba(139, 92, 246, 0.3),
    -4px -4px 10px #ffffff,
    inset 2px 2px 4px rgba(190, 160, 255, 0.5),
    inset -4px -4px 8px rgba(90, 40, 200, 0.4);
  --bio-input-bg: #f0e5e0;
  --bio-input-border: #d4cac4;
  --bio-input-text: #2d2235;
  --bio-input-placeholder: #a89aaf;
  --bio-icon-social: #8b5cf6;
  --bio-link-icon-bg: #f0e5e0;
  --bio-link-icon-stroke: #8b5cf6;
  --bio-appt-icon-bg: #8b5cf6;
  --bio-appt-icon-stroke: #ffffff;
  --bio-tagline-text: #7a6a80;
  --bio-tagline-border: #d4cac4;
  --bio-icon-secondary: #8b5cf6;
  --bio-rupa-text: rgba(45, 34, 53, 0.3);
  --bio-radius-card: 30px;
  --bio-radius-input: 16px;
  --bio-radius-btn: 9999px;
  --bio-radius-avatar: 9999px;
  --bio-radius-thumbnail: 22px;
  --bio-stripe-bg: #f0e5e0;
  --bio-stripe-border: #d4cac4;
  --bio-stripe-text: #2d2235;
  background: #f0e5e0 !important;
  overflow: hidden;
}

.theme-1192 .bio-scroll-container {
  background-image: none !important;
  background-size: auto !important;
  background-position: initial !important;
  animation: none !important;
}

.theme-1192::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #f0e5e0;
  box-shadow:
    inset -16px -16px 26px rgba(175, 155, 148, 0.5),
    inset 16px 16px 26px rgba(255, 255, 255, 0.9),
    16px 16px 30px rgba(175, 155, 148, 0.35);
  z-index: 0;
  pointer-events: none;
  animation: theme-1192-float 8s ease-in-out infinite alternate;
}

.theme-1192::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: -8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow:
    inset -12px -12px 20px rgba(60, 25, 160, 0.5),
    inset 12px 12px 20px rgba(180, 150, 255, 0.6),
    12px 12px 22px rgba(139, 92, 246, 0.3);
  z-index: 0;
  pointer-events: none;
  animation: theme-1192-float-r 10s ease-in-out infinite alternate;
}

@keyframes theme-1192-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-40px) rotate(14deg);
  }
}
@keyframes theme-1192-float-r {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(50px) scale(1.1);
  }
}
