* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5ece4;
  color: #3c2f2f;
}

header {
  background-color: #3c2f2f;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: relative;
}

header img {
  width: 150px;
  display: inline-block;
  margin: 10px 20px;
}

nav {
  gap: 20px;
  display: inline;
  justify-content: center;
  margin-left: 150px;
  position: absolute;
  top: 100px;
  padding: 20px;
}

.close-nav {
  display: none;
}

nav a {
  color: #f5ece4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0 10px;
  padding: 10px;
}

nav a:hover {
  background-color: #f5ece4;
  color: #3c2f2f;
  border-radius: 10px;
}

.section-1 {
  background: url("images/landing.svg") no-repeat center/cover;
  height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 50px;
  position: relative;
  background-color: #3c2f2f;
}

.section-1 div {
  text-align: left;
}

.section-1 h1 {
  font-family: "Galada", cursive;
  font-size: 48px;
  color: #f5ece4;
  margin-bottom: 10px;
}

.section-1 p {
  font-family: "Pompiere", cursive;
  font-size: 24px;
  color: #f5ece4;
}

.section-2 {
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 30px;
}

.section-2 img {
  width: 500px;
  border-radius: 15%;
}

.section-2 div {
  max-width: 500px;
  margin-left: 50px;
}

.section-2 h2 {
  font-family: "Galada", cursive;
  font-size: 36px;
  color: #3c2f2f;
  margin-bottom: 10px;
}

.section-2 h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3c2f2f;
  margin: 10px 0;
}

.section-2 p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #3c2f2f;
  margin: 10px 0;
}

.section-2 button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3c2f2f;
  color: #f5ece4;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.section-3 {
  text-align: center;
  padding: 50px;
  background-color: #d4a373;
}

.section-3 h2 {
  font-family: "Galada", cursive;
  font-size: 36px;
  color: #3c2f2f;
  display: inline-block;
  margin: 10px;
  vertical-align: middle;
}

.section-3 img {
  width: 50px;
  margin: 10px 0;
  display: inline-block;
  vertical-align: middle;
}

.section-3 h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3c2f2f;
  margin-bottom: 30px;
}

.reviews {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.review {
  background-color: #f5ece4;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: left;
}

.review span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #3c2f2f;
  line-height: 1.5;
  text-align: center;
}

.review .user {
  margin-top: 10px;
  font-weight: 700;
  color: #d4a373;
}

.section-4 {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #3c2f2f;
  color: #f5ece4;
}

.contact-us,
.site-map,
.info {
  width: 30%;
}

.contact-us h2,
.site-map h2 {
  font-family: "Galada", cursive;
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-us h4,
.site-map h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-us textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  resize: none;
}

.contact-us textarea#f_name,
.contact-us textarea#email {
  height: 40px;
}

.contact-us textarea[placeholder="Your Message"] {
  height: 100px;
}

.contact-us button {
  padding: 10px 20px;
  background-color: #d4a373;
  color: #3c2f2f;
  border: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.site-map ul {
  list-style: none;
}

.site-map ul li {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.info img {
  width: 150px;
  margin-bottom: 20px;
}

.info span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.info span img {
  width: 20px;
}

footer {
  background-color: #f5ece4;
  text-align: center;
  padding: 20px;
  color: #3c2f2f;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.menu-toggle {
  display: none;
}

@media (max-width: 425px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #f5ece4;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 50px;
    top: 50px;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    background-color: #3c2f2f;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 20px;
    margin-left: 0;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 10px 0;
    font-size: 18px;
  }

  header {
    padding: 20px;
    display: flex;
    align-items: center;
  }

  header img {
    margin: 0;
    width: 80px;
  }
  .close-nav {
    background: none;
    border: none;
    color: #f5ece4;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 20px;
    display: none;
  }

  .close-nav:hover {
    background-color: #f5ece4;
    color: #3c2f2f;
    border-radius: 10px;
  }

  nav.active .close-nav {
    display: block;
  }
  .section-1 {
    height: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background: #3c2f2f;
    padding: 0 30px;
  }

  .section-1 div {
    text-align: center;
    margin: auto;
    padding: 10px;
  }

  .section-1 h1 {
    font-family: "Galada", cursive;
    font-size: 40px;
    color: #f5ece4;
    margin-bottom: 10px;
  }

  .section-1 p {
    font-family: "Pompiere", cursive;
    font-size: 20px;
    color: #f5ece4;
    margin-bottom: 20px;
  }

  .section-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px;
  }

  .section-2 img {
    width: 250px;
    height: 200px;
    border-radius: 15%;
  }

  .section-2 div {
    max-width: 500px;
    margin: auto;
    padding: 10px;
  }

  .section-2 h2 {
    font-family: "Galada", cursive;
    font-size: 25px;
    color: #3c2f2f;
    margin-bottom: 10px;
  }

  .section-2 h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #3c2f2f;
    margin: 10px 0;
  }

  .section-2 p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 2;
    color: #3c2f2f;
    margin: 10px 0 0 0;
  }

  .section-2 button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3c2f2f;
    color: #f5ece4;
    border: none;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }
  .section-3 {
    text-align: center;
    padding: 30px;
    background-color: #d4a373;
  }

  .section-3 h2 {
    font-family: "Galada", cursive;
    font-size: 25px;
    color: #3c2f2f;
    display: inline-block;
    margin: 10px;
    vertical-align: middle;
  }

  .section-3 img {
    width: 50px;
    margin: 10px 0;
    display: inline-block;
    vertical-align: middle;
  }

  .section-3 h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #3c2f2f;
    margin-bottom: 30px;
  }

  .reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .review {
    background-color: #f5ece4;
    padding: 0;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    margin: auto;
  }

  .review span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #3c2f2f;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .review .user {
    margin-top: 10px;
    font-weight: 500;
    color: #d4a373;
    margin: auto;
  }
  .section-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    background-color: #3c2f2f;
    color: #f5ece4;
  }

  .contact-us,
  .site-map,
  .info {
    width: 100%;
    margin: 10px auto;
  }

  .contact-us h2,
  .site-map h2 {
    font-family: "Galada", cursive;
    font-size: 25px;
    margin-bottom: 10px;
  }

  .contact-us h4,
  .site-map h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contact-us textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    resize: none;
  }

  .contact-us textarea#f_name,
  .contact-us textarea#email {
    height: 40px;
  }

  .contact-us textarea[placeholder="Your Message"] {
    height: 100px;
  }

  .contact-us button {
    padding: 10px 20px;
    background-color: #d4a373;
    color: #3c2f2f;
    border: none;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }

  .site-map ul {
    list-style: none;
  }

  .site-map ul li {
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }

  .info img {
    width: 80px;
    margin-bottom: 20px;
  }

  .info span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    vertical-align: middle;
  }

  .info span img {
    width: 20px;
    margin: 0;
  }
}
