@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

.libre-franklin-<uniquifier> {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
  font-family: 'Libre Franklin', system-ui, sans-serif;
}
.image:active {
  content: url('assets/img/second-icon.svg');
}
.image:hover {
  cursor: pointer;
}

/* Glowing effect for involvement cards 
.involvements {
  box-shadow: 0 0 15px rgba(251, 146, 60, 0.4), 0 0 30px rgba(251, 146, 60, 0.2);
  position: relative;
  overflow: hidden;
}
.involvements::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.involvements:hover::before {
  opacity: 1;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.involvements:hover {
  box-shadow: 0 0 10px rgba(251, 146, 60, 0.6), 0 0 20px rgba(251, 146, 60, 0.4);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.4), 0 0 20px rgba(251, 146, 60, 0.2);
  }
  to {
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.8), 0 0 30px rgba(251, 146, 60, 0.6);
  }
}
  */
.btn-transition {
            transition: all 0.3s ease-in-out;
}

.tab {
  display: inline-block;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.5rem;
  color: #71717a; /* zinc-500 */
  transition: color 0.2s;
}

.tab.active {
  color: #fff !important; /* White for active tab */
}

.tab:hover {
  color: #fff;
}

.nav-tabs {
  position: relative;
}

.tab-underline {
  position: absolute;
  bottom: 0;
  background: #3b82f6; /* Tailwind blue-500 */
  transition: left 0.3s, width 0.3s;
  pointer-events: none
  left: 0;
  width: 0;
}

#tab-content {
  transition: min-height 0.3s;
}
