:root {
  --cream: #faf7f2;
  --charcoal: #2f2f2f;
  --oak: #b08b5e;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.90), rgba(0,0,0,0.60)),
              url('../img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

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

.divider {
  width: 70px;
  height: 3px;
  background: var(--oak);
  margin: 1.5rem auto;
  border-radius: 2px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  color: white;
}

footer a {
  display: inline-block;
  margin-top: 0.5rem;
  color: white;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.7;
}
