* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: rgba(23, 41, 132, 0.637); /* very dark background */
  color: rgb(255, 255, 255); /* text */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(23, 41, 132, 0.555); /* same dark as body for header */
  padding: 1rem 2rem;
}

header .logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: rgb(255, 255, 255); /* text stands out */
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

header nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

header nav a:hover {
  color: rgb(143, 144, 145); /* slightly lighter purple accent */
}

header .icons {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  color: rgb(255, 255, 255);
}

header .icons:hover {
  color: rgb(153, 153, 153);
}

.about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  background-color: rgb(23, 42, 132, 0.750); /* very dark container */
  border-radius: 10px;
  gap: 3rem;
}

.profile,
.bio {
  flex: 1 1 400px;
}

.profile {
  text-align: center;
}

.bio {
  max-width: 600px;
  margin: 0 auto;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 2px solid rgb(105, 115, 140); /* lighter border for contrast */
}

.profile .native-name {
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
}

.profile h4 {
  margin-top: 0.5rem;
  color: rgb(255, 255, 255);
}

.socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.socials a {
  color: rgb(160, 160, 160);
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  color: rgb(38, 58, 122);
}

.bio h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
}

.bio p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgb(255, 255, 255);
}

.cv-btn {
  background-color: rgb(27, 51, 160); /* lighter than container for visibility */
  border: none;
  color: rgb(255, 255, 255); /* text stands out */
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cv-btn:hover {
  background-color: rgb(138, 152, 185); /* hover makes it even brighter */
  color: rgb(27, 51, 160); /* text contrast on hover */
}

.cv-btn:active {
  text-decoration: none;
}

.info {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.info h4 {
  margin-bottom: 0.8rem;
  color: rgb(105, 115, 140);
}

.info ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgb(255, 255, 255);
}

#themeToggle {
  cursor: pointer;
  color: rgb(105, 115, 140);
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
