* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	/*overflow-x:hidden; */
	/*overflow-y:hidden;*/
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/*  color: #111; */
	color: #B97A57;
  background: #fff;
  line-height: 1.6;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding: 1rem 2rem;
 
	background: #f0f0f0;
  position: fixed;
/*  width: 100%; */
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.nav .logo { height: 32px; }
.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover { color: #555; }
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
background: #f5f5f7;
  align-items: center;
  text-align: center;
}
.hero-text h1 {
  font-size: 5rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.btn {
  padding: 0.75rem 2rem;
  background: #111;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover { background: #333; }
.content {
  padding: 6rem 3rem;
  max-width: 700px; 
  margin: 0 auto;
  text-align: center;
}
.content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.center-image {
	display: block;
	margin-left:auto;
	margin-right:auto;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #f5f5f7;
  font-size: 0.9rem;
  color: #555;
}
