@import "tailwindcss";

@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("/assets/Inter-Medium.woff2") format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("/assets/Inter-SemiBold.woff2") format('woff2');
  font-weight: 600;
  font-display: swap;
}

@layer base {
  body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  }

  /* Make turbo-frames transparent to layout */
  turbo-frame {
    display: contents;
  }
}

.tenant-footer {
  background-color: #2a3439;
  color: #b0b0b0;
  padding: 3rem 1.5rem;
}

.tenant-footer .tenant-footer__inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tenant-footer .tenant-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
}

@media (min-width: 768px) {
  .tenant-footer .tenant-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 3rem;
  }
}

.tenant-footer .tenant-footer__brand {
  display: flex;
  flex-direction: column;
}

.tenant-footer .tenant-footer__logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tenant-footer .tenant-footer__logo-link > span:first-child {
  position: relative;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
}

.tenant-footer .tenant-footer__logo-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #f9c80e;
}

.tenant-footer .tenant-footer__logo-rent {
  position: relative;
  color: #18181b;
  font-weight: 600;
  font-size: 0.875rem;
}

.tenant-footer .tenant-footer__logo-tagline {
  margin-top: 0.25rem;
}

.tenant-footer .tenant-footer__logo-info {
  color: #f9c80e;
  font-size: 1.125rem;
  font-weight: 700;
}

.tenant-footer .tenant-footer__logo-ca {
  color: #f9c80e;
  font-size: 1.125rem;
}

.tenant-footer .tenant-footer__copyright {
  font-size: 0.875rem;
  color: #b0b0b0;
}

.tenant-footer .tenant-footer__logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.tenant-footer .tenant-footer__logos img {
  height: 2.75rem;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.tenant-footer .tenant-footer__column {
  display: flex;
  flex-direction: column;
}

.tenant-footer .tenant-footer__heading {
  color: #b0b0b0;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.tenant-footer .tenant-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #b0b0b0;
}

.tenant-footer .tenant-footer__list li {
  margin-bottom: 0.5rem;
}

.tenant-footer .tenant-footer__contact p {
  font-size: 0.875rem;
  color: #b0b0b0;
  margin-bottom: 0.25rem;
}

.tenant-footer .tenant-footer__contact a {
  font-size: 0.875rem;
  color: #b0b0b0;
}

.tenant-footer .tenant-footer__contact a:hover {
  color: #fff;
}