/************************General style******************************/
body {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  padding-inline-start: 0;
}
li {
  display: flex;
  flex-direction: row;
  padding: 5px 0;
  font-size: 16px;
  list-style: none;
  border: 1px solid #16423c;
  border-radius: 4px;
  text-decoration: none;
  margin: 10px 0;
  text-indent: 10px;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-transform: capitalize;
}
footer {
  background-color: #16423c;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  color: #c4dad2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
/******************************************************/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px;
  background-color: #e9efec;
}
.logo {
  width: 4%;
  margin-top: 8px;
  display: flex;
  flex-direction: row;
}
.logo-img {
  width: 100%;
}
.logo h3 {
  color: #16423c;
  margin: 3.5px 15px 0 15px;
  font-size: 17px;
  text-transform: capitalize;
  text-align: center;
}

.navbar-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar-list li {
  text-decoration: none;
  color: #16423c;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
}
.navbar-list li a {
  text-decoration: none;
  color: #16423c;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
}

.navbar-list li a:hover {
  background-color: #f0f0f0;
}

.intro {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header-intro {
  color: #16423c;
  text-align: center;
  font-size: 45px;
  word-spacing: 7px;
}
.intro-desc {
  text-align: center;
}
.desc-intro {
  font-size: 20px;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  color: #16423c;
}
.container {
  height: 539px;
  display: flex;
  justify-content: space-between;
}
.task-managing {
  width: 50%;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
}

#addTask-btn {
  font-size: 15px;
  background-color: #5a827e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100px;
  margin-top: 5px;
  height: 35px;
}
#addTask-btn:hover {
  background-color: #9ebc8a;
}
#task-input {
  width: 70%;
  padding: 12px 12px 12px 0;
  border: none;
  border-bottom: 2px solid #16423c;
  border-radius: 6px;
  font-size: 14px;
  background-color: #faf9ee;
  outline: none;
  text-indent: 10px;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  height: 18px;
}
.task-item {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f5efff;
  outline: none;
}

.task-container {
  width: 40%;
  padding-right: 10px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  height: 363px;
}
.task-container h2 {
  text-align: center;
  color: #16423c;
  visibility: visible;
}
#previous-task {
  visibility: hidden;
  opacity: 0;
}
.sidebar {
  width: 250px;
  background-color: #c4dad2;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  height: 610px;
}
.sidebar h2 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  color: #16423c;
}
.sidebar button {
  background-color: #6a9c89;
  color: #e9efec;
  border: none;
  padding: 12px 10px;
  margin: 8px 0;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
}
.sidebar button:hover {
  background-color: #1abc9c;
}
#task-list {
  color: #16423c;
  margin-top: 50px;
}
#task-list li {
  border: 1px solid #16423c;
}
.task-status {
  display: inline-block;
  margin-left: auto;
  margin-right: 9px;
  height: 32px;
  background: #9ebc8a;
  color: white;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
}
#new-taskList .task-status {
  background-color: #e4efe7;
  color: #16423c;
}
.contact-form {
  background-color: #e4efe7;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  margin-top: 40px;
}
.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #16423c;
  text-align: center;
}
.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #16423c;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #e9efec;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form button {
  background-color: #6a9c89;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #9ebc8a;
}
.about {
  display: flex;
  justify-content: space-around;
}
