/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Fonts:
- Gothic header: UnifrakturCook
- Monospaced tech: Share Tech Mono
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png'), #0a0a0a;
  color: #e0e0e0;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(10,10,10,0.9));
  position: absolute;
  inset: 0;
  z-index: 0;
}

header {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid #222;
}

.logo {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ff1e1e;
  text-shadow: 0 0 5px #000;
}

nav a {
  color: #c4c4c4;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff1e1e;
}

.hero {
  z-index: 1;
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-family: 'UnifrakturCook', cursive;
  color: #ff1e1e;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}

.subtitle {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  background-color: #111;
  color: #ff1e1e;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ff1e1e;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ff1e1e;
  color: #000;
  transform: scale(1.05);
}

footer {
  z-index: 1;
  position: relative;
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid #222;
}
