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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: black;
}

.hero {
  height: 100vh;
  background: url('assets/mountain.jpg') no-repeat center center/cover;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #ccc;
  max-width: 600px;
}

footer {
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #444;
}

.footer-content p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-content a {
  color: #bbb;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}
