body {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
}

@media screen and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  .column {
    padding-left: 0;
    padding-right: 0;
  }
}

.title, .subtitle, .navbar, .tabs a {
  font-family: "Inter", sans-serif;
}

a.technologies {
  color: #3273dc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

a.technologies:hover {
  color: #205bbc;
  border-bottom-color: #205bbc;
}

.bio-card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.message-box-animated {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.4s ease;
}

.message-box-animated.is-visible {
  opacity: 1;
  max-height: 300px;
}

.post-card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.post-excerpt {
  border-left: 3px solid #dbdbdb;
  padding-left: 1rem;
  color: #4a4a4a;
}

.site-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 52px); /* 52px = navbar height */
}

.site-content > .container {
  flex: 1;
}

@media only screen and (max-width: 1000px) {
  #navMenu {
    display: block;
    opacity: 0;
    position: relative;
    padding: 0;
    left: 0;
    right: 0;
    max-height: 0px;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    overflow: hidden;
  }

  #navMenu.is-active {
    max-height: 200px;
    padding: 0.5rem 0.75rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

#tech, #workexp {
  animation: fade 0.3s ease-in-out;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
