 * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { height: 100%; font-family: Arial, sans-serif; overflow: hidden; background: #0b0b0b; }

  .bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
  .bg .slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
  }
  .bg .slide.active { opacity: 1; transform: scale(1.12); }

  .overlay {
    position: fixed; inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.25), rgba(10,10,10,0.55));
    z-index: 1;
  }

  .intro {
    position: relative; z-index: 2;
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; color: rgb(189, 189, 189); padding: 2rem; gap: 1rem;
  }

  h1 { font-size: 3rem; font-weight: 600; }
  p.lead { color: rgba(255,255,255,0.9); font-size: 1.05rem; max-width: 780px; }

  h1 { 
  font-size: 3rem; 
  font-weight: 600; 
  display: flex;
  justify-content: center;
  gap: 0.2em;
}

h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(20deg);
  animation: letterIn 0.8s forwards;
}

h1 span:nth-child(1){ animation-delay: 0.1s; }
h1 span:nth-child(2){ animation-delay: 0.2s; }
h1 span:nth-child(3){ animation-delay: 0.3s; }
h1 span:nth-child(4){ animation-delay: 0.4s; }
h1 span:nth-child(5){ animation-delay: 0.5s; }
h1 span:nth-child(6){ animation-delay: 0.6s; }

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  color: #0b0b0b;
  background-color: gold;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta-button:hover { background-color: gold; }

/*bacground text*/

.yellow {
    background-color: gold;
    text-shadow: 2px 2px 2px #0b0b0b;
}
