/* style.css */
/* Minimal dark mysterious landing page */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; font-family: 'Montserrat', sans-serif; background: #000; overflow: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
}

.hero-content {
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.5rem, 8vw, 3rem);
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 2s ease-out forwards;
  -webkit-animation: fadeInUp 2s ease-out forwards;
  -moz-animation: fadeInUp 2s ease-out forwards;
  -o-animation: fadeInUp 2s ease-out forwards;
}

.hero-content .contact {
  margin-top: 1.5rem;
  color: #888;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 2s ease-out 1s forwards;
}

.hero-content .contact a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.hero-content .contact a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.hero-content .contact a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Brawler font class */
.brawler-family {
  font-family: "Brawler", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
} 