html {
  scroll-padding-top: 120px;  
  scroll-behavior: smooth;
}

header {
  font-size: 50px;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #10141D; 
  padding: 12px 42px;
  text-align: right;
  z-index: 1000;
}

#nav a {
  color: white;
  font-size: 27px;
  margin-left: 20px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s, border-bottom 0.3s;
}

#nav a:hover, #nav a.active {
    color: #FF7B00; 
    border-bottom: 3px solid #FF7B00;
}

/* Your main title (Kenneth Wu) */
#title {
  font-size: 80px;
  margin-bottom: 6px;  
  font-family: 'Inter', sans-serif;
  font-weight: 800; 
  background: linear-gradient(
        90deg, 
        #FF7B00, 
        #FFA03F
    );
  /* 💥 Code to make the gradient show as text color 💥 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; 
}

/* Subtitle (Informatics student) */
#title2 {
  font-size: 30px;
  margin-top: 0;
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  color: white; 
}

.accent {
    color: #FF7B00; 
    font-weight: 500;
}

/* HOME SECTION LAYOUT (Two-Column Flex) */
#home-section {
  background-color: #10141D;
  background-image: none;

  min-height: calc(100vh - 80px); 
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 0 50px; 
}

#home-content {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-box {
  max-width: 60%; 
}

figure img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid #FF7B00;
  object-fit: cover; 


  max-width: 250px; 
  display: block;
  height: auto;
}

body {
  background-color: #10141D;
  background-image: none; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 20px; 
  padding-top: 80px; 

  color: white;
  font-family: 'Karla', sans-serif;
}