/* FOOTER */

footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 90% center;
  width: 100%;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer li {
  padding-bottom: 12px;
}

footer a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

footer ul a:hover,
.footer-copyright a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-direction: column;
  min-height: 30vw;
  padding: 3.5rem 4rem 1.5rem;
  width: 100%;
  background-image: linear-gradient(
    to right,
    rgba(21, 83, 154, 0.9),
    60%,
    rgba(21, 83, 154, 0.22)
  );
}

/* FOOTER SEARCH */

.footer-search {
  --color: #fff;
  margin-left: 30px;
  margin-top: 40px;
}

.footer-search.search-box {
  margin: 0;
  padding: 1.75rem 0rem 0rem 0rem;
}

.footer-search input {
  font-size: 1.2rem;
}

.footer-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-search svg {
  width: 1rem;
}

.footer-search.search-box input {
  width: 270px;
}

/* FOOTER SECTIONS */

.footer-sections {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-copyright p {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Quicksand Light";
  color: rgb(255, 255, 255);
}

.footer-logo img {
  height: 95px;
  margin-bottom: -15px;
}

/* FOOTER SOCIAL */

.footer-social {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-end;
}

.footer-social a {
  font-size: 12px;
  font-weight: bold;
  height: 30px;
}

.footer-button-24k {
  height: 30px;
  background-color: #DDA654;
  border: 0;
  border-radius: 8px;
  color: white;
  width: 80px;
  min-width: 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-social-media-icon {
  height: 30px;
}

#kjv-icon {
  height: 60px;
  width: 60px;
  margin: -14px;
}

/* KJV icon tooltip */

.kjv-icon-link {
  position: relative;
}

/* Arrow */
.kjv-icon-link::before {
  content: '';
  position: absolute;
  border: 7px solid transparent;
  bottom: calc(100% - 14px);
  left: 50%;
  margin-left: -7px;
  border-top-color: black;
  width: 0;
  transition: bottom .3s, opacity .3s;
  opacity: 0;
  height: 0;
  pointer-events: none;
}

/* Tooltip */
.kjv-icon-link::after {
  content: 'Bible';
  position: absolute;
  bottom: 100%;
  background: black;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  transition: bottom .3s, opacity .3s;
  font-size: .8rem;
  opacity: 0;
  border-radius: 5px;
  pointer-events: none;
}

.kjv-icon-link:hover::before {
  opacity: 1;
  bottom: calc(100% + 6px);
}

.kjv-icon-link:hover::after {
  bottom: calc(100% + 20px);
  opacity: 1;
}

/* FOOTER COPYRIGHT */

.footer-copyright {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/* FOOTER MEDIA QUERIES */
@media (max-width: 1200px) {
  .footer-logo img {
    height: 75px;
    margin-left: -10px;
    margin-bottom: 0;
  }

  .footer-sections {
    padding-top: 4rem;
    gap: 2rem;
    flex-direction: column;
  }

  .footer-container {
    padding: 2.8rem 2.5rem 1rem;
  }

  .footer-copyright,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    text-align: center;
  }

  .footer-copyright,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-social {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
}