.hidden {
  display: none !important;
}

/* Academia / Industry mode filtering */
body.academia-mode .industry-only {
  display: none !important;
}
body.industry-mode .academia-only {
  display: none !important;
}

/* Mode toggle switch */
.mode-toggle-item,
#sideNav .navbar-collapse .navbar-nav .mode-toggle-item {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0 0.25rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.mode-toggle-item:hover {
  opacity: 0.85;
}
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mode-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  line-height: 1;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 1.1rem;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1.1rem;
  transition: background-color 0.2s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  height: 0.75rem;
  width: 0.75rem;
  left: 0.175rem;
  bottom: 0.175rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: rgba(255, 255, 255, 0.35);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(0.9rem);
}


.social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #495057;
  color: #fff;
  border-radius: 100%;
  font-size: 1.5rem;
  margin-right: 1.5rem;
}
.social-icons .social-icon:last-child {
  margin-right: 0;
}
.social-icons .social-icon:hover {
  background-color: #bd5d38;
}

.dev-icons {
  font-size: 3rem;
}

section.resume-section {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 75rem;
}
section.resume-section .resume-section-content {
  width: 100%;
}

@media (min-width: 768px) {
  section.resume-section {
    min-height: 100vh;
  }
}
@media (min-width: 992px) {
  section.resume-section {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}