/* GLOBAL STYLES */
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  padding: 20px;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #1e90ff;
  width: 0%;
  z-index: 1000;
  transition: width 0.2s ease;
}

NAVIGATION BAR */
.navbar {
  background-color: #1f1f1f;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 2px solid #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

/* HEADER SECTION */
.header-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

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

.text-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #cccccc;
}

.text-content a {
  color: #1e90ff;
  text-decoration: none;
}

.text-content a:hover {
  text-decoration: underline;
}

.image-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 20px;
}

.profile-photo {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* CURRENT WORKS SECTION */
.current-works-section {
  background-color: #1f1f1f;
  padding: 30px 20px;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.current-works-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.current-works-section a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
}

.current-works-section a:hover {
  text-decoration: underline;
}

/* TEACHING SECTION */
.teaching-section {
  background-color: #1f1f1f;
  padding: 30px 20px;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.teaching-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.teaching-entry {
  text-align: left;
  margin-bottom: 20px;
}

.teaching-entry h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1e90ff;
}

.teaching-role {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #cccccc;
}

.teaching-courses {
  list-style-type: none;
  padding-left: 0;
}

.teaching-courses li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #cccccc;
}

/* TEACHING SECTION LINKS */
.teaching-courses a {
  color: #1e90ff; /* Blue color for links */
  text-decoration: none; /* Remove underline */
}

.teaching-courses a:hover {
  text-decoration: underline; /* Add underline on hover */
}

/* CV SECTION */
.cv-section {
  background-color: #1f1f1f;
  padding: 30px 20px;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cv-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cv-section a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
}

.cv-section a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background-color: #1f1f1f;
  text-align: center;
  padding: 15px 0;
  color: #888;
  font-size: 0.9rem;
  border-top: 2px solid #333;
  margin-top: 40px;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .header-section {
    flex-direction: column;
    text-align: center;
  }

  .text-content, .image-content {
    max-width: 100%;
  }

  .profile-photo {
    margin-top: 20px;
  }
}


