@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@100..900&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

:root {
  --color-background: #070c14;
  --color-on-background: #e2e8f0;
  --color-primary: #93c5fd;
  --color-on-primary: #04080e;
  --color-secondary: #60a5fa;
  --color-surface: #0b1320;
  --color-surface-variant: #152238;
  --color-on-surface-variant: #94a3b8;
  --color-surface-container-lowest: #03070d;
}

body {
  background-color: var(--color-background);
  color: var(--color-on-background);
  cursor: none;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* Material Symbols configuration */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.silver-divider {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.25), transparent);
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
}

.cinematic-scroll-container {
  scroll-behavior: smooth;
}

.cinematic-section {
  position: relative;
}

.thin-border {
  border-width: 0.5px;
}

.section-vertical-buffer {
  padding-top: clamp(120px, 20vh, 240px);
  padding-bottom: clamp(120px, 20vh, 240px);
}

/* Subtle page entrance animations */
.fade-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}
