
/* Animated Text Styles */
.animated-text {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -2px;
  display: inline-block;
}

/* Paragraph Styles */
.animated-text-paragraph {
  color: rgba(0, 0, 0, .5);
  font-size: clamp(16px, 14px + 1.5vw, 40px) !important;
  max-width: unset;
}

.animated-text-paragraph .char {
  color: rgba(0, 0, 0, 1);
  transition: color 0.3s ease;
  position: relative;
}

.animated-text-paragraph .char.space {
  display: inline;
  width: auto;
}

.animated-text-paragraph .char.visible {
  color: #000;
}

.animated-text-paragraph .char.visible-gradient {
  background: linear-gradient(135deg, #000000 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Spacer for scrolling */
.spacer {
  height: 50vh;
}

/* Responsive Design */
@media (max-width: 968px) {
  .animated-text {
    font-size: 3.5rem;
  }
  
  .animated-text-paragraph {
    font-size: 1.25rem;
  }
  
  .content-section {
    padding: 6rem 2rem;
  }
}

@media (max-width: 640px) {
  .animated-text {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  
  .animated-text-paragraph {
    font-size: 1.1rem;
  }
  
  .content-section {
    padding: 4rem 1.5rem;
  }
  
  .hero-section {
    padding: 1rem;
  }
}

