/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Fix for section positioning */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  margin-top: 40px;
  z-index: 1;
}

.about-section {
  position: relative;
  width: 100%;
  z-index: 2;
  background: var(--color-light);
  padding: var(--spacing-2xl) var(--spacing-lg);
  margin-top: 0;
}

/* Container spacing fix */
main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  animation: bounce 2s infinite;
}

.scroll-down .arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  margin-top: 10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
