/* RESET & BODY */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Arial, sans-serif;
  font-size:16px;
  background-color:#fff;
  color:#333;
  line-height:1.6;
  max-width:1000px;
  margin:auto;
  padding:20px;
}

/* NAVIGATION */
nav {
  background-color:#6a1b9a;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  padding:10px 0;
}
nav a {
  color:#fff;
  padding:14px 20px;
  text-decoration:none;
  font-size:1em;
}
nav a:hover, nav a.active { background-color:#8e24aa; }

/* HEADINGS */
h1 {
  text-align:center;
  margin-bottom:20px;
  color:#6a1b9a;
}
h2 {
  margin-top:20px;
  margin-bottom:10px;
  color:#6a1b9a;
  font-size:1.75em;
  text-align:center;
}

/* TABS */
.tabs {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:20px;
}
.tab {
  background-color:#6a1b9a;
  color:#fff;
  padding:10px 15px;
  margin:5px;
  border-radius:4px;
  cursor:pointer;
  transition:background 0.3s;
}
.tab:hover { background-color:#8e24aa; }
.tab.active { background-color:#8e24aa; }

/* SECTIONS */
.section { display:none; }
.section.active { display:block; }
.section p { margin-bottom:15px; }

/* BIO IMAGE */
.bio {
  overflow:hidden;
  margin-top:20px;
}
.bio img {
  float:left;
  max-width:240px;
  margin-right:15px;
  margin-bottom:10px;
  border-radius:8px;
}
@media(max-width:768px) {
  .bio img {
    float:none;
    display:block;
    margin:0 auto 15px auto;
  }
}

/* AWARDS GALLERY */
.awards-gallery {
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
  margin-top:15px;
}
.award-item {
  display:flex;
  flex-direction:column;
  align-items:center;
  cursor:pointer;
}
.award-item img {
  max-width:150px;
  border-radius:8px;
  transition:transform 0.2s;
}
.award-item img:hover { transform:scale(1.05); }

/* SOCIAL TAB FIXED */
#social {
  text-align:center;
  margin-top:30px;
  width:100%;
}
.social-list {
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:30px;
  margin:0 auto;
}
.social-item {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:20px 25px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
  color:#fff;
  min-width:120px;
  transition:transform 0.2s, box-shadow 0.2s;
}
.social-item i { font-size:4em; }
.social-item span { font-size:1.3em; }
.social-item.facebook { background-color:#1877f2; }
.social-item.twitter { background-color:#1da1f2; }
.social-item.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.social-item.linkedin { background-color:#0a66c2; }
.social-item:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,0.3); }

/* RESPONSIVE */
@media (max-width:768px) {
  .social-list {
    flex-direction:column;
    gap:20px;
  }
  .social-item i { font-size:3.5em; }
  .social-item span { font-size:1.2em; }
}
