/* ===============================
   BASE RESET & TYPOGRAPHY
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

img.protected-img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* ===============================
   BOARD PAGE LAYOUT
================================= */
.board-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.board-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #007acc;
  margin-bottom: 2rem;
  text-align: left;
  padding-left: 0.5rem;
}

/* Founder Block */
.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.member.founder img {
  width: 270px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.member-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007acc;
  margin-top: 0.5rem;
  text-align: center;
}

.member-role {
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
  text-align: center;
}

/* Board Members Section */
.board-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #007acc;
  text-align: left;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.board-members {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.board-members .member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.board-members .member-name,
.board-members .member-role {
  text-align: center;
  margin-top: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .board-members {
    flex-direction: column;
    align-items: center;
  }

  .member.founder img {
    width: 220px;
  }

  .section-title,
  .board-title {
    text-align: center;
    padding-left: 0;
  }
}



.section-title,
.board-title {
  font-size: 2rem;
  font-weight: 600;
  color: #007acc;
  margin-bottom: 2rem;
  text-align: center; /* ✅ Center the text */
}

.member-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007acc;
  margin-top: 0.5rem;
  text-align: center;
}


.icon-tooltip {
  position: relative;
  display: inline-block;
}

.icon-tooltip .tooltip {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  white-space: nowrap;
}

.icon-tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}




/* Force Bluesky SVG to display in correct blue */
.bluesky-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(37%) sepia(70%) saturate(733%) hue-rotate(176deg) brightness(92%) contrast(90%);
}

.youtube-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  /* Apply red filter (YouTube red) */
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(7494%) hue-rotate(358deg) brightness(96%) contrast(112%);
}
