/* Bio.html styling*/

body {
  margin: 0;
  background-color: #000000;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
  pointer-events: none;
}


.bio-container {
  display: block;
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Text Styling */
.bio-name {
  font-size: 2.8rem;
  color: #ebebeb;
  margin: 0 0 10px;
  font-weight: 700;
}

.bio-tagline {
  font-size: 1.2rem;
  color: #e50914;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.bio-info {
  color: #bbbbbb;
  text-align: left;
}

.bio-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Footer Nav Buttons */
footer {
  background-color: transparent;
  padding: 10px 0;
  text-align: right;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e50914;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.next-btn::after {
  content: " →";
}


/*static home icon on every page*/
.home-float-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e50914;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.home-float-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.5);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}