body {
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: white;
  color: black;
}

/* General link styling - dark pink for all links */
a {
  color: #c2185b; /* Dark pink */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e91e63; /* Slightly lighter pink on hover */
  text-decoration: underline;
}

/* Navigation */
nav {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav li a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav li a:hover {
  background-color: rgba(233, 30, 99, 0.1);
}

/* Active page styling - darker pink text */
nav li a.active {
  color: #c2185b;
  font-weight: 600;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 2rem;
  background-color: white;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

/* Intro section */
.intro {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  align-items: flex-start;
}

.intro img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.bio {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.bio p {
  margin-bottom: 1.5rem;
  color: #444;
  text-align: justify;
}

.bio a {
  color: #e91e63;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bio a:hover {
  color: #c2185b;
  text-decoration: underline;
}

.bio strong {
  color: #333;
  font-weight: 700;
}

/* ✅ General section styling (for other pages like Research, Hobbies, etc.) */
section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 2rem;
}

section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    padding: 0 1rem;
  }

  nav li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  .intro {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .intro img {
    width: 250px;
    height: 320px;
    margin: 0 auto;
  }

  .bio {
    text-align: left;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  header h1 {
    font-size: 2rem;
  }

  header {
    padding: 2rem 1rem;
  }
}
