$dumb-color: saturate(mix(red, darken(purple, 10), 30), 100);



.card {
  width: 300px;
  height: 400px;
  border: 1px solid rgba(150, 150, 150, 0.2);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1), transparent);
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin: 50px auto;
  text-align: center;
  line-height: 400px;
  box-shadow: inset 5px 5px 20px rgba(255, 255, 255, 0.1);
  -webkit-animation: shimmy 6s ease-in-out infinite;
}

/* p {
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
} */

:root {
  --wave-speed: 22s;
  /* overall scroll speed */
  --wave-stroke: 1.75;
  /* base stroke width */
  --ui-gap: 14px;
  /* spacing for UI */
}

/* Page baseline */
html {
  height: 100%;
}

body {
  /* margin: 0;
  font: 16px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #e5e7eb;
  background: radial-gradient(1200px 800px at 70% 20%, #1f2937, #0f172a 60%);
  min-height: 100%; */
  /* we pan the background without document scroll */
  margin: 0;
  font: 16px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #e5e7eb;
  background: radial-gradient(1200px 800px at 70% 20%, #1f2937, #0f172a 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

  min-height: 100%;
}

/* Content demo (you can remove) */
.content {
  position: relative;
  z-index: 10;
  /* above waves */
  max-width: 900px;
  margin: 8vh auto 0;
  /* padding-top: 140px; */
  padding: 32px clamp(16px, 2vw, 32px);
  background: rgba(15, 23, 42, 0.6);
  /* slate-900/60 */
  backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

nav.fancy-nav {
  border-bottom: 1px solid rgba(197, 197, 197, 0.05) !important;
  /* padding-bottom: 20px; */
}

nav.fancy-nav.scrolled {
  background: rgba(15, 23, 42, 0.3);
  border-bottom: 1px solid rgba(197, 197, 197, 0.05) !important;
  backdrop-filter: blur(5px);
  /* margin-bottom: 30px; */
  /* padding: 15px 0; */
}


.frosty-content {
  position: relative;
  background: rgba(15, 23, 42, 0.4);
  /* slate-900/40 - less opaque than your .content class */
  backdrop-filter: blur(8px) saturate(130%);
  /* Less intense than your 10px blur */
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtler border */
  border-radius: 16px;
  /* Slightly less rounded than your 20px */
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  /* Lighter shadow */
  margin-bottom: 2rem;
  overflow: hidden;
  min-height: 600px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.frosty-content:hover {
  background: rgba(46, 48, 54, 0.45);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

:target {
  scroll-margin-top: 140px;
  /* Adjust this value to match your navbar + search bar height */
}

/*Copy to ClipBoard utilities*/
#email-copy[data-copy-feedback="success"] {
  background-color: #28a745 !important;
  color: white !important;
}

#email-copy[data-copy-feedback="error"] {
  background-color: #dc3545 !important;
  color: white !important;
}