body {
  margin: 0;
  font-family: sans-serif;
  background-color: #ffffff;
  padding: 40px 20px;
}

*, *::before, *::after {
  cursor: none !important;
}

.navigation {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 30px;
  font-size: 14px;
  z-index: 1000;
}

.navigation a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #555;
}

.navigation a.active {
  color: #000;
  font-weight: bold;
}

.about-container {
  max-width: 100%;
  margin: 0 auto;
}

.about-section {
  background: transparent;
  padding: 60px 40px;
  max-width: 100%;
  margin: 0 auto;
}

.about-section h1 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 300;
  color: #333;
}

.about-section h2 {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 300;
  color: #333;
}

.bio {
  column-count: 3;
  column-gap: 15px;
  text-align: justify;
}

.contact {
  text-align: left;
  max-width: 600px;
}

.contact p {
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  background: none;
  -webkit-text-fill-color: unset;
}

.bio p {
  line-height: 1.2;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  word-spacing: 0.3em;
  margin-bottom: 8px;

  /* Background-clip text effect - fixed to span all columns */
  background-image: url('/assets/imgs/tree2.jpg');
  background-size: 75vw auto;
  background-position: center center;
  background-attachment: fixed;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Ensure text remains selectable */
  user-select: text;
  -webkit-user-select: text;
}

/* Responsive design */
@media (max-width: 1024px) {
  .bio {
    column-count: 2;
    column-gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-section h1 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 20px;
  }

  .bio {
    column-count: 1;
    column-gap: 0;
  }

  .bio p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 15px;
  }

  .bio p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
