body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  color: white;
  background-color: #0e0e11;
}

.hero {
  height: 100vh;
  background: url('assets/bg.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

h1 {
  font-size: 4rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  border: 1px solid white;
  padding: 0.75rem 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: white;
  color: #0e0e11;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
}
