/* Section transitions */
.section-fadein {
  animation: sectionAppear 0.8s ease-out forwards;
}

@keyframes sectionAppear {
  from {
    opacity: 0.6;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swipe-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  opacity: 0.6;
}

.swipe-indicator i {
  font-size: 14px;
  margin: 0 4px;
  color: var(--text-secondary);
}

.swipe-indicator .active {
  color: var(--primary);
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(126, 84, 237, 0.15) 0%,
    rgba(84, 175, 237, 0.05) 50%,
    transparent 70%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 0 15px;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
  font-size: 24px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-scroll-text {
  font-size: 12px;
  font-weight: 500;
}
