body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f2f1ef;
  color: #2b2b2b;
}
nav {
  background: #ffa952;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 10px 20px;
  font-weight: 600;
}
header {
  height: 80vh;
  background: url('16.jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5);
}
header h1, header p {
  z-index: 1;
}
.content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.hero {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}
.button {
  background-color: #b07f4e;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
}
footer {
  text-align: center;
  background: #e9e7e4;
  padding: 25px 10px;
  font-size: 0.9rem;
}