/* FOOTER */

.footer {
  width:1440px;
  height:450px;
  margin:125px auto 0;
  padding:45px 80px 35px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:75px;
  font-family:"futura-pt-condensed", sans-serif;
  text-decoration:#888;
}

.footer::before {
  content:"";
  position:absolute;
  top:0;
  left:80px;
  right:80px;
  border-top:1px solid rgba(0, 0, 0, 0.18);
}

.project-photography-credit {
  width:1440px;
  max-width:100%;
  margin:0 auto;
  padding:24px 80px 0;
  color:#888;
  font-size:20px;
  font-weight:300;
  line-height:1.2;
  text-align:right;
}

.project-photography-credit a,
.project-photography-credit a:visited,
.project-photography-credit a:hover,
.project-photography-credit a:active {
  color:inherit;
  text-decoration:none;
}

.footer-main {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:45px;
}

.footer-divider {
  display:block;
  width:2.25px;
  height:50px;
  background-color:#888;
}

.footer-social {
  display:flex;
  align-items:center;
  justify-content:center;
  filter: brightness(0) invert(75%)
}

.footer-social img {
  display:block;
  width:44px;
  height:44px;
  filter: brightness(0) invert(75%)
}

.footer-copyright {
  margin:0;
  color:#888;
  align-content:center;
  font-size:32px;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:active {
  color:#888;
  text-decoration:none;
}

.footer-main .footer-name,
.footer-main .footer-email {
  font-family: "futura-pt-condensed", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: none;
  white-space: nowrap;
  color: #888;
  text-decoration: none;
}

/* CONTACT PAGE */

.contact-page {
  width:1440px;
  min-height:900px;
  margin:0 auto;
  padding:180px 80px 100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:140px;
}

.contact-intro {
  font-size:42px;
  font-style:italic;
}

.contact-intro p {
  margin:0 0 25px;
}

.contact-intro a {
  color:black;
  text-decoration:none;
}

.contact-form {
  display:flex;
  flex-direction:column;
  gap:35px;
}

.form-field {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label {
  font-size:22px;
}

.form-field input,
.form-field textarea {
  width:100%;
  padding:10px 0;
  border:0;
  border-bottom:1px solid black;
  border-radius:0;
  background:transparent;
  color:black;
  font-family:"futura-pt-condensed", sans-serif;
  font-size:28px;
}

.form-field textarea {
  resize:vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline:none;
  border-bottom-width:2px;
}

.contact-form button {
  width:max-content;
  padding:12px 35px;
  border:1px solid black;
  background:white;
  color:black;
  font-family:"futura-pt-condensed", sans-serif;
  font-size:25px;
  cursor:pointer;
}

.contact-form button:hover {
  background:black;
  color:white;
}