body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

main {
  background-image: url('Assets/bg.svg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: calc(100vh - 56px);
}

.main-mobile {
  overflow-y: auto;
  background-image: url('Assets/bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 50px);
}

/* Carousel - handled by Swiper.js */
.mobile-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* Navbar */
.nav-link {
  color: #ffffff;
  font-family: 'Arimo', 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;
}
