/* INDEX.HTML */
.typing-text {
  display: inline-block;
}

/* HERO STYLES */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 2em 1em;
}
.hero-content h1 {
  font-size: 2.8em;
  margin: 0.2em 0;
}
.hero-content p {
  font-size: 1.2em;
  opacity: 0.85;
}
.hero-buttons {
  margin-top: 1em;
}
.hero-btn {
    background: #C084FC;
    color: black;
    text-decoration: none;
    padding: 0.7em 1.4em;
    border-radius: 2rem;
    margin: 0.5em;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-btn.secondary {
  color: white;
  background: transparent;
  border: 1px solid #C084FC;
}
.hero-btn:hover {
  background: #a855f7;
  transform: translateY(-3px);
}
.hero-btn.secondary:hover {
  background: #C084FC22;
}

.hero-btn-logo {
  align-self: center;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  padding: 0px 5px 0px 0px;
}

/* CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 2em;
}
.carousel-track {
  display: grid;
  transition: transform 0.6s ease;
}
.carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}
.carousel-slide img {
  width: 100%;
  border-radius: 2rem;
  border: 4px solid #C084FC33;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.carousel-slide h3 {
  margin-top: 0.5em;
  font-weight: 500;
}
.carousel-dots {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.carousel-dots div {
  width: 10px;
  height: 10px;
  background: #C084FC55;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-dots .active {
  background: #C084FC;
}