@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-container {
  /* Flexbox magic */
  display: flex;
  flex-direction: column; /* Stack H1 and H2 vertically */
  justify-content: center; /* Center vertically */
  align-items: center;     /* Center horizontally */
  
  /* Full screen dimensions */
  height: 100vh;
  width: 100%;
  
  /* Styling */
  font-family: 'Inter', sans-serif;
  text-align: center;
  background-color: #f9fafb; /* Light professional gray */
  color: #111827;           /* Deep slate/black */
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #6b7280; /* Subdued gray for the subtitle */
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: #eee;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a; /* Matches your text color */
    animation: loading 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes loading {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}
.back-link {
    margin-top: 50px;
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;

}

.back-link:hover {
    color: #1a1a1a; /* Darkens on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.back-link .arrow {
    transition: transform 0.3s ease;
}

.back-link:hover .arrow {
    transform: translateX(-5px); /* Arrow moves left on hover */
}