body {
  background-color: #fffaf0;
  margin: 0;
}

header img {
    width: 90px;
    height: auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6%;
    background-color: white;
    border-bottom: 1px solid #eee;

}

nav {
  display: flex;
  gap: 60px;
}

nav a {
    text-decoration: none;
    color: #5b1a1a;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
  color: #c59b2a;
}

.hero {
  background-image: url("hero.png");
  background-position: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 6%;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 70px;
  color: #631b13;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  font-size: 35px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 30px;
}

.button {
  background-color: #5b1a1a;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background-color 0.5s ease, transform 0.5s ease;

}

.button:hover {
  background-color: #c54c2a;
  transform: scale(1.07);
}

.hero-namam {
  width: 150px;
  height: auto;
}

.hero-motto {
  color:#463b1d;
  font-size: 18px;
  font-weight: bold;
}

.hero-motto span {
  display: block;
}