@charset "utf-8";

.footer {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #faf3f0 50%, #ecd6e2 100%);

  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .main-title {
  position: absolute;
  top: 38%;
  z-index: 1;
  font-size: clamp(28px, 7vw, 96px);
  text-align: center;
  color: var(--gray2, #4f4f4f);
  text-shadow: 8px 8px 10px rgba(18, 18, 18, 0.2);
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  perspective: 800px;
  perspective-origin: center center;
}
.footer .main-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* .footer .main-title span.show {
  opacity: 1;
  transform: translateY(0);
}
.footer .main-title span.hide {
  opacity: 0;
  transform: translateY(-20px);
} */

.footer .contact-info {
  position: absolute;
  top: 55%;
}
.footer .contact-info div:first-child {
  padding-bottom: 16px;
}
.footer .contact-info p {
  display: flex;
  gap: 8px;
  color: #888;
  text-align: center;
  justify-content: center;
}
