/* =========================================
   FOOTER SECTION
   ========================================= */

.footer {
  position: relative;
  height: 60svh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://res.cloudinary.com/dyiqyp4lj/image/upload/v1778561569/IMG_7501_mb89es.jpg') center center / cover no-repeat;
  z-index: 0;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.85);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding-top: var(--space-64);
  padding-bottom: var(--space-32);
}

.footer-watermark {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  width: 80%;
  max-width: 300px;
}

.footer-watermark img {
  width: 100%;
  height: auto;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: var(--text-title);
  color: var(--color-white);
  letter-spacing: -0.06em;
  margin-bottom: var(--space-16);
  margin-top: var(--space-32);
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-grey);
}
