body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdf7f0;
  color: #2e2b28;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 90vh;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero .content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 10px;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  background: #b33b24;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background: #992e1a;
}

.about {
  padding: 60px 20px;
  text-align: center;
  background-color: #fffaf3;
}

.about h2 {
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

footer {
  background: #2e2b28;
  color: #fdf7f0;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}