/* Home Page Styles - VISUAL.md Compliant */

/* Keyframes for blur-in animations */
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.8);
  }
  50% {
    opacity: 0.5;
    filter: blur(10px);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}

@keyframes backgroundBlur {
  0% {
    background: #000000;
    filter: blur(50px);
  }
  50% {
    background: linear-gradient(135deg, #00091E 50%, rgba(85, 93, 255, 0.05) 50%);
    filter: blur(25px);
  }
  100% {
    background: linear-gradient(135deg, #00091E 0%, rgba(85, 93, 255, 0.1) 100%);
    filter: blur(0px);
  }
}

.home-page {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  background: linear-gradient(135deg, #00091E 0%, rgba(85, 93, 255, 0.1) 100%);
  color: #FFFFFF;
  font-family: 'Archivo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Start with black background and blur */
  background: #000000;
  filter: blur(50px);
  /* Animate to gradient */
  animation: backgroundBlur 2s ease-out forwards;
}

.home-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.home-logo {
  margin-bottom: 20px;
  text-align: center;
}

.brand-logo {
  max-width: 300px;
  height: auto;
  filter: brightness(0) invert(1); /* Make logo white on dark background */
  /* Start invisible and blurred */
  opacity: 0;
  filter: brightness(0) invert(1) blur(20px);
  transform: scale(0.8);
  /* Animate in after background animation */
  animation: blurIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.home-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Archivo', sans-serif; /* Future Tense when font files added */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  color: #FFFFFF;
  /* Start invisible and blurred */
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.8);
  /* Animate in after logo */
  animation: blurIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

.home-content > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: 'Archivo', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  /* Start invisible and blurred */
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.8);
  /* Animate in after h1 */
  animation: blurIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s forwards;
}


/* Responsive Design */
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 2rem;
  }
}
