/* Footer - Premium dark footer with brand identity */

.footer {
  position: relative;
  z-index: 1;
  background: #111114;
  color: #9C9CA8;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  margin-top: auto;
  flex-shrink: 0;
}

/* ── Gradient accent line ───────────────── */

.footer-accent {
  height: 2px;
  background: linear-gradient(90deg, #0894FF 0%, #BD32D6 35%, #6462EA 50%, #0894FF 70%, #FFA304 100%);
  opacity: 0.7;
}

/* ── Inner container ────────────────────── */

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding: 56px 40px 48px;
  align-items: start;
}

/* ── Brand column ───────────────────────── */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 28px;
  width: fit-content;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-tagline {
  color: #6E6E7A;
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Location ───────────────────────────── */

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #8A8A96;
  transition: color 0.2s ease;
}

.footer-location:hover {
  color: #FFFFFF;
}

.footer-location__icon {
  font-size: 16px;
  color: #6E6E7A;
  margin-top: 2px;
  flex: 0 0 auto;
  transition: color 0.2s ease;
}

.footer-location:hover .footer-location__icon {
  color: #0894FF;
}

.footer-location__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.5;
}

.footer-location__venue {
  font-size: 13.5px;
  font-weight: 500;
  color: #C0C0CC;
}

.footer-location:hover .footer-location__venue {
  color: #FFFFFF;
}

.footer-location__line {
  font-size: 12.5px;
  color: #6E6E7A;
}

.footer-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  background: var(--accent-warm);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: all 0.25s ease;
  width: fit-content;
}

.footer-cta-btn:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 85, 26, 0.3);
}

/* ── Navigation columns ─────────────────── */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  color: #E0E0E6;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #8A8A96;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-links a.router-link-active {
  color: #C0C0CC;
}

/* ── Bottom bar ─────────────────────────── */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 40px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Laid out as a row rather than a run of inline text: as inline text the line
   breaks wherever it likes on a phone, which stranded the "·" alone at the end
   of the copyright line. */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px;
  text-align: center;
}

.footer-copy {
  color: #505060;
  font-size: 12px;
  letter-spacing: 0.01em;
}

/* ── Tablet (≤ 1024px) ──────────────────── */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px 32px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    padding: 16px 32px;
  }
}

/* ── Mobile (≤ 767px) ───────────────────── */

@media (max-width: 767px) {
  .footer-inner {
    padding: 32px 20px 24px;
    gap: 32px;
  }

  .footer-logo {
    height: 24px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-cta-btn {
    padding: 12px 32px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col-title {
    font-size: 11.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .footer-links a {
    font-size: 13px;
    padding: 3px 0;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
  }

  /* Two centred lines on a phone - the separator has nothing left to separate. */
  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal__sep {
    display: none;
  }

  .footer-copy {
    font-size: 11.5px;
  }
}

/* ── Small mobile (≤ 400px) ─────────────── */

@media (max-width: 400px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}
