/* assets/css/custom.css */

@import "custom/typography.css";
@import "custom/global_color_variables.css";
/* @import 'custom/navbar.css'; */
@import 'custom/navbar_debug.css';
@import 'custom/spacing.css';
@import 'custom/liquid_UI.css';
@import "custom/collapsible_abstract.css";





/* ==========================================================================
   OPTIONAL / COMMENTED-OUT EXPERIMENTS
   ========================================================================== */

/* Callout note color override
.callout-note {
  background-color: rgba(103, 126, 118, 0.15) !important;
  border-color: #677E76 !important;
}

.callout-note .callout-icon {
  color: #677E76 !important;
}
*/

/* Sticky section header */
/*
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 10;
  background-color: #677E76;
}

.section-heading h1 {
  font-size: 3.5rem;
  color: #F2F2F2;
  margin: 0;
}
*/

/* Social link glassmorphism */
/*
.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: rgba(51, 65, 85, .92);
  background: linear-gradient(145deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .18));
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12), inset 0 1px rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: color .28s ease, border-color .36s ease, background .36s ease, box-shadow .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.social-link::before,
.social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.social-link::before {
  inset: 1px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 8%) 62%, rgba(255, 255, 255, .18));
  opacity: .9;
}

.social-link::after {
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, .72), transparent 42%);
  opacity: .85;
  mix-blend-mode: screen;
}

.social-link:hover,
.social-link:focus-visible {
  color: rgba(15, 23, 42, .95);
  background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .3));
  border-color: rgba(255, 255, 255, .62);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .16), inset 0 1px rgba(255, 255, 255, .82);
  transform: translateY(-3px) scale(1.05);
}
*/

/* Social link icon support + dark mode */
/*
.social-link__icon,
.social-link > svg,
.social-link > i {
  position: relative;
  z-index: 1;
  width: 1.9rem;
  height: 1.9rem;
  color: currentColor;
  flex-shrink: 0;
}

.social-link > i {
  font-size: 1.9rem;
  line-height: 1;
}

.dark .social-link {
  color: rgba(226, 232, 240, .92);
  background: linear-gradient(145deg, rgba(23, 33, 47, .35), rgba(13, 20, 34, .25));
  border: 1px solid rgba(148, 163, 184, .25);
  box-shadow: 0 16px 30px rgba(2, 12, 27, .36), inset 0 1px rgba(255, 255, 255, .1);
}

.dark .social-link::before,
.dark .social-link::after {
  opacity: 0;
}

.dark .social-link:hover,
.dark .social-link:focus-visible {
  color: rgba(248, 250, 252, .98);
  background: linear-gradient(145deg, rgba(32, 46, 64, .95), rgba(18, 27, 41, .75));
  border-color: rgba(148, 163, 184, .32);
  box-shadow: 0 20px 36px rgba(2, 12, 27, .44), inset 0 1px rgba(255, 255, 255, .14);
}
*/

/* Alternate mobile menu card prototype */
/*
#site-header .navbar__menu-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  gap: .25rem;
  padding: 0;
  border-radius: 0;
  background: #E4ECEA;
  border: 1.5px solid #97B8AA;
  box-shadow: 0 8px 24px rgba(103, 126, 118, 0.10);
  position: relative;
  overflow: visible;
}
*/