/* GENERAL LAYOUT */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background-color: #f9f9fb;
}

/* NAVBAR */
.navbar {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.nav-link.active {
  font-weight: 600;
  color: #0d6efd !important;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-weight: 600;
}
h2 {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

/* SECTIONS */
section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.hero {
  padding-top: 7rem;
  background: linear-gradient(180deg, #fff, #f3f4f6);
}

/* TAGS */
.tag {
  font-size: 0.8rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  background-color: #fff;
  margin-right: 0.4rem;
}

/* IMAGES */
.thumb {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* LINKS */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  padding: 2rem 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}


.mini-tab-card {
  display: inline-block;
  padding: 6px 12px;
  margin: 4px 6px 6px 0;
  font-size: 0.8rem;
  border-radius: 20px;
  border: 1px solid #cccccc;
  background-color: #f5f5f5;
  color: #333333;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.mini-tab-card:hover {
  background-color: #e0f0ff;
  color: #0056b3;
  border-color: #007bff;
}


.extracurricular-box {
  max-width: 750px;        /* Limits width */
  margin: 0 auto;          /* Centers the box */
}

.extracurricular-box .d-flex {
  justify-content: center; /* Optional: centers the inner flex items */
}
