@charset "utf-8";
/* CSS Document */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B462C;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 16px;
}
.nav-links a {
  position: relative;
  padding-bottom: 2.5px;
  text-decoration: none;
  color: #332421;
  font-weight: normal;
}
.nav-links a:hover {
  color: #2B462C;
}
.hero {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url("images/background.JPG");
  background-blend-mode: overlay;
  background-size: cover;
  border-bottom: 4px solid #2B462C;
  border-radius: 5px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 48px;
  text-align: center;
}
.hero-title {
  font-size: 45px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #332421;
}
.hero-subtitle {
  max-width: 520px;
  margin: 8px auto 0;
  font-size: 20px;
  color: black;
}
section h2 {
  margin-bottom: 16px;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2B462C;
}
main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 40px 25px 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-width: 4px;
  border-style: solid;
  border-color: #2B462C;
  border-radius: 5px;
}
#about p {
  max-width: 700px;
  font-size: 20px;
  color: black;
}
.about-image {
  width: 400px;
  height: auto;
  border-radius: 5px;
}
.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  max-width: 800px;
}
.works-image {
  width: 400px;
  height: 350px;
  border-radius: 5px;
}
table {
  padding-left: 150px;
  padding-right: 50px;
}
#tips ul {
  list-style: disc;
  padding-left: 25px;
  max-width: 650px;
  font-size: 20px;
  color: black;
}
footer {
  border-top: 4px solid #2B462C;
  border-radius: 5px;
  background: #fff;
  padding: 24px 24px 32px;
  font-size: 16px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-inner {
    padding-top: 40px;
  }
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-image {
    width: 100%;
    max-width: 400px;
  }
  .works-image {
    padding: 0px;
    width: 100%;
    max-width: 400px;
  }
}