/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
  background: rgba(26, 26, 26, 0.85);
  color: #c9b8b8;
  height: 100%;
  overflow-x: hidden;
  word-spacing: 0.1em;
    line-height: 1.4;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2;
}

header h1 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  color: #fff;
}

header p {
  color: #aaa;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 25%;
  flex-shrink: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 2rem;
}

.header-text {
  text-align: left;
  font-size: 2.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-bar {
    display: flex;
    justify-content: center;
    margin: 1rem 1rem;
}

nav a {
  margin: 0rem 0.5rem;
  color: #c9b8b8;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline overline #c6c4c4;
  text-decoration-thickness: 6px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  background: rgba(26, 26, 26, 0.85);
  padding: 1.5rem;
  margin: 1.5rem 0rem;
  border-radius: 12px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.4);
}

.link {
  color: #848687;
  text-decoration: underline;
}

footer {
  text-align: left;
  color: #666;
  z-index: 2;
  position: relative;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: #575859;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #fff;
}

/* Fullscreen background canvas */
#bg-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
