body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background-image: url('Assets/bg image.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Instrument Sans', sans-serif;
}
main {
  height: calc(100vh - 56px);
}
/* Navbar */
.nav-link {
  color: #ffffff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #d8b4fe;
}
/* Tagline */
.tagline {
  font-family: 'Inria Serif', serif;
  color: #ffffff;
  font-size: 1.5rem;
  text-shadow: 0px 4px 5.6px rgba(249, 209, 70, 0.34);
}
/* Cards - Desktop */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-img {
  width: 100%;
  height: 35vh;
  object-fit: contain;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.card-img:hover {
  transform: scale(1.05);
}
.card-icon {
  height: 2.5vh;
  margin-top: 0.5vh;
}
.card-label {
  font-family: 'Instrument Sans', sans-serif;
  color: #f59e0b;
  font-size: 0.80vw;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.3vh;
}
/* Cards - Mobile */
.card-img-mobile {
  width: 100%;
  height: 25vh;
  object-fit: contain;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}
.card-icon-mobile {
  height: 1.5rem;
  margin-top: 0.4rem;
}
.card-label-mobile {
  font-family: 'Instrument Sans', sans-serif;
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
/* Mobile tagline */
@media (max-width: 767px) {
  body {
    overflow: auto;
    height: auto;
    min-height: 100vh;
  }
  .tagline {
    font-size: 1.1rem;
  }
  main {
    height: calc(100vh - 44px);
  }
}

