@font-face {
  font-family: 'Cal Sans';
  src: url('media/CalSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Base setup */
html {
  scroll-behavior: smooth;
  background-color: #0f0f11;
  color: #f0f0f0;
}

body {
  background-color: #0f0f11;
  color: #f0f0f0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1#name {
  font-family: 'Cal Sans', sans-serif;
  font-weight: 600;
}



/* Typography */
h1, h2, h3 {
  font-family: "Cal Sans", monospace;
  color: #f0f0f0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-left: 4px solid #f0f0f0;
  padding-left: 0.75rem;
}

h3 {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Links */
a {
  color: #363636;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #f0f0f0;
}

/* Card styling */
.card {
  background-color: #1a1a1d;
  border: 1px solid #2b2b2e;
  border-radius: 10px;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #f0f0f0;
  box-shadow: 0 0 10px #ffd58020;
  transform: translateY(-2px);
}

.card-title {
  font-weight: 600;
  color: #f0f0f0;
}

.card-text {

  color: #bbbbbb;
}

/* Media elements */
video,
audio {
  border-radius: 6px;
  margin-bottom: 0.75rem;
  background-color: #000;
}

/* Avatar/profile */
#avatar {
  border: 3px solid #363636;
  box-shadow: 0 0 8px #363636;
}

/* Section spacing */
section {
  margin-top: 4rem;
}

/* Footer */
footer {
  background-color: #161618;
  color: #888;
  font-size: 0.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  border-top: 1px solid #333;
}

/* Buttons or future links */
.link-secondary {
  color: #363636;
}
.link-secondary:hover {
  color: #ccc;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

.text-muted {
  color: #bbbbbb !important;
}

