/* General body and container styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0A192F;
  color: #8892b0;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Sidebar styling */
.sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
  border-right: 1px solid #233554;
}

.profile-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #112240;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

header h1 {
  font-size: 1.5em;
  font-weight: bold;
  color: #64ffda;
  font-family: 'Fira Mono', monospace; /* Monospace style for header */
}

header p {
  color: #8892b0;
  font-size: 1.1em;
}

/* Navigation links */
.nav-links a {
  color: #8892b0;
  text-decoration: none;
  font-size: 1.1em;
  padding: 5px 0;
  display: block;
  font-family: 'Fira Mono', monospace; /* Monospace font for links */
}

.nav-links a:hover {
  color: #FFFFFF;
}

/* Social links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #8892b0;
  text-decoration: none;
  font-size: 1.5em;
}

.social-links a:hover {
  color: #64ffda;
}

/* Main content styling */
main {
  flex: 1;
  padding-left: 20px;
}

h2 {
  font-size: 2em;
  color: #FFFFFF;
  margin-top: 0;
  font-family: 'Poppins', sans-serif; /* Sans-serif for subheadings */
}

.experience-item {
  border-top: 1px solid #233554;
  padding-top: 20px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.experience-item:hover {
  background-color: #112240;
}

.skills {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.skills span {
  background-color: #112240;
  color: #64ffda;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Fira Mono', monospace; /* Monospace font for skill badges */
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Highlighted text */
.highlight {
  color: #FFFFFF; /* Matches the white color of your headings */
/*  font-weight: bold;  Optional, makes the text bold */
}

/* New styles for section headers with smooth transition on hover */
section {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #233554;
  border-radius: 5px;
  transition: background-color 0.3s;
}

section:hover {
  background-color: #112240;
}

.client-link {
  color: #64ffda;
  text-decoration: none;
}

.client-link:hover {
  text-decoration: none; /* Keeps underline off on hover */
}
