/*desktop nav bar*/
.nav {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  font-size: 21px;
  background-color: #5d7b63;
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  padding: 20px;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  text-align: center;
}

.highlight {
  text-decoration: underline;
}

nav a:hover {
  text-decoration: underline;
  color: #243627;
}

/* hamburger menu */
.hamburger-nav {
  display: none;
}

.h-nav {
  font-size: 21px;
  font-family: "Times New Roman", Times, serif;
  position: relative;
  overflow: hidden;
}

.h-nav a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  background: #354035;
  padding: 10px;
}

.h-nav a.h-icon {
  background: #395436;
  top: 0;
  right: 0;
  padding: 20px;
  position: absolute;
  display: block;
}

.h-nav #myLinks {
  display: none;
}

#myLinks a:hover {
  background-color: #2c332c;
  color: #ffffff;
  text-decoration: none;
}

.h-title {
  background-color: #5d7b63;
  color: #ffffff;
  padding: 20px;
}

@media (max-width: 850px) {
  .hamburger-nav {
    display: block;
  }

  .nav {
    display: none;
  }
  .contact-container{
    flex-wrap:wrap;
    justify-content: center;
  }
}


/* main {
  flex-grow: 1;
} */

main h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  /* Changed to flex */
  gap: 80px;
  margin-top: 0px;
  margin: auto;
  max-width: 1100px;
  margin-bottom: 60px;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  max-height: 400px;
  font-family: arial;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #49995f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: #348049;
}

.contact-info {
  border-radius: 2px;
  background-color: #9bc2a3;
  padding: 20px;
  width: 50%;
  display: flex;
  /* Changed to flex */
  flex-direction: column;
  min-width:400px;
}

.socials-container {
  border-radius: 2px;
  background-color: #9bc2a3;
  padding: 20px;
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* Changed to flex */
  height: 370px;
  font-size: 20px;
  min-width: 400px;
  min-height: 400px;
}

.socials {
  padding: 50px 10px 10px 10px;
}

.smedia {
  margin-top: 40px;
}

#g-icons {
  color: #34523a;
}

#g-icons:hover {
  cursor: pointer;
  color: #5d7b63;
}

#map {
  color: black;
  text-decoration-line: none;
}

footer {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  background-color: #5d7b63;
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  padding: 20px;
  position: flow;
  margin-top: 210px;
}
