/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Página inteira sem rolagem */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* <--- impede scroll */
  font-family: 'Georgia', serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../assets/images/cosmic_forest.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  max-width: 800px;
  text-align: left;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.teaser {
  font-size: 1.2rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 25px;
  background-color: #ffffff;
  color: #0d0d0d;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #dddddd;
}
