/* Basic styling for a multi-page portfolio with light theme */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f7f9fc;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1000px;
    margin: 20px auto;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

.main-nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #555;
}

.main-nav a:hover {
    color: #0077cc;
}

.hero {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.links-brief {
    list-style: none;
    padding: 0;
}

.btn {
    background: #0077cc;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
}

.btn-outline {
    background: none;
    border: 2px solid #0077cc;
    color: #0077cc;
}

.site-footer {
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #ddd;
}
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0077cc;
}

.pcu-logo {
    width: 80px;
    height: auto;
    margin-bottom: 8px;
}

.page-achievements {
  background: #fff;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.page-achievements h1 {
  text-align: center;
  color: #004b8d;
  margin-bottom: 10px;
}

.page-achievements .intro {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.achievement-list ul {
  list-style-type: "🏆  ";
  padding-left: 25px;
}

.achievement-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.main-nav .active {
  font-weight: bold;
  color: #004b8d;
  text-decoration: underline;
}

.page-achievements {
  background: #fff;
  border-radius: 10px;
  padding: 30px 35px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
}

.page-achievements h1 {
  text-align: center;
  color: #004b8d;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-achievements .intro {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.achievement-list ul {
  list-style-type: "🏅 ";
  padding-left: 25px;
}

.achievement-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 10px 15px;
  border-radius: 6px;
}

.achievement-list li:hover {
  background: #eef4fb;
  transform: scale(1.01);
}

.main-nav .active {
  font-weight: bold;
  color: #004b8d;
  text-decoration: underline;
}

.page-events {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.page-events h1 {
  color: #004b8d;
  text-align: center;
  margin-bottom: 10px;
}

.page-events .intro {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.event-category {
  margin-bottom: 30px;
}

.event-category h2 {
  color: #004b8d;
  border-left: 5px solid #004b8d;
  padding-left: 10px;
  margin-bottom: 10px;
}

.event-list {
  list-style-type: square;
  padding-left: 25px;
  color: #333;
}

.event-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.main-nav .active {
  font-weight: bold;
  color: #004b8d;
  text-decoration: underline;
}

.event-list li {
  position: relative;
  margin-bottom: 18px;
  padding: 15px 20px 15px 35px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  background: #f9fbff;
  border-left: 4px solid #004b8d;
  border-radius: 6px;
}

.event-list li::before {
  content: "🎓";
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 16px;
}

.event-list li:hover {
  background: #eef4fb;
  transform: scale(1.01);
  transition: 0.3s ease-in-out;
}

