body {
  background-color: #ffffffc7;
  font-family: Arial, sans-serif;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  color: #333;
}

h1, h2 {
  text-align: center;
}

/* #The arrow color that goes back to pages */
a {
  color: #298dc7;             
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.profile-summary {
  text-align: left;
  margin-top: 20px;
  color: #010101;
}


.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.main-nav a {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #007acc;
  color: #010101;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.main-nav a:hover {
  background-color: #005fa3;
}


.profile-subtitle {
  font-weight: 600;
  font-size: 1rem;
  color: #010101;
  margin-bottom: 15px;
}


.profile-subtitle a {
  color: #007acc;
  text-decoration: none;
  font-weight: 600;
}

.other-interests a {
  color: #010101;
  text-decoration: none;
  font-weight: 600;
}
.profile-subtitle a:hover {
  text-decoration: underline;
}

#three-container {
  width: 100%;
  height: 400px;
  overflow: auto;
  margin-bottom: 30px;
}
/* 
#vanta-bg {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  color: white;
}

#vanta-bg > * {
  position: relative;
  z-index: 1;
} */

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.2;
}

nav.main-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #f5f5f5;
  font-weight: bold;
  padding: 16px 20px;
  transition: all 0.8s ease;
}

nav.main-nav a:hover {
  color: #007BFF; /* Accent color */
  transform: translateY(-3px); /* subtle lift */
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: #007BFF;
  transition: width 0.8s ease;
}

nav.main-nav a:hover::after {
  width: 100%;
}


footer a {
  margin: 0 14px;
  color: #444;
  text-decoration: none;
  font-size: 34px;
}
footer a:hover {
  color: #0077b5; /* LinkedIn blue as an example */
}

.email_link {
  color: #0077b6; /* A nice blue */
  text-decoration: none; /* Optional: removes underline */
}

.email_link:hover {
  color: #023e8a; /* Darker on hover */
  text-decoration: underline; /* Optional: adds underline on hover */
}
/* styles.css */

body {
  font-size: 18px;
  padding: 20px;
}

/* 📱 Mobile styles */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  nav {
    flex-direction: column;
  }
}
