/* Custom styles for Selllient AI coming soon page - Minimalist New York Style */

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* Typography */
h1 {
  letter-spacing: 0.1em;
}

/* Form styling */
input:focus {
  outline: none;
}

/* Subtle hover animation for button */
button {
  transition: color 0.3s ease;
}

button:hover {
  color: #fff;
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.main-content {
  animation: fadeIn 1.5s ease-out;
}

/* Subtle underline animation */
.underline-animation {
  position: relative;
}

.underline-animation::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.underline-animation:hover::after {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

/* Toast notification styling - Minimal */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.toast.hidden {
  opacity: 0;
}