/* LOCATION PAGE */

/* HERO */

.sb-loc-box {
  gap: 2rem;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.sb-loc-main {
  background: #0d0d10;
  padding: 1.5rem;
}

.loc-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.loc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.loc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.loc-hero-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 1;
}

.loc-hero-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #00ffe1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.loc-hero-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: #f0f0f0;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.loc-hero-title span {
  -webkit-text-stroke: 2px #f0f0f0;
  color: transparent;
}

.loc-hero-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #555;
  text-transform: uppercase;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffe1;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* MAIN CONTENT WRAPPER */

.loc-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #0d0d10;
}

/* KNOWN FOR */

.loc-known-for {
  border-left: 3px solid #00ffe1;
  padding: 1rem 1.5rem;
  background: #0d0d10;
}

.loc-known-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #00ffe1;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.loc-known-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  color: #888;
  line-height: 1.6;
  font-style: italic;
}

/* TWO COLUMN */

.loc-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.loc-section {
  background: #0d0d10;
  padding: 1.5rem;
}

.loc-section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #00ffe1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.loc-section-text {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
}

/* DIVIDER */

.loc-divider {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #333;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0;
  border-top: 1px solid #1a1a1f;
  border-bottom: 1px solid #1a1a1f;
}

/* POI GRID */

.loc-poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.loc-poi {
  background: #0d0d10;
  padding: 1.25rem;
  position: relative;
}

.loc-poi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #00ffe1;
}

.loc-poi-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: #00ffe1;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.loc-poi-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.2rem;
  color: #e8e8e8;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.loc-poi-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

/* NOTABLE FIGURES */

.loc-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.loc-figure {
  background: #0d0d10;
  padding: 1.5rem;
  border-left: 3px solid #00ffe1;
}

.loc-figure-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: #00ffe1;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.loc-figure-name {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.4rem;
  color: #e8e8e8;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.loc-figure-desc {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.7;
}

/* RUMORS */

.loc-rumors {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.loc-rumor {
  background: #0d0d10;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.loc-rumor-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: #ff8c00;
  border: 1px solid #ff8c00;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.loc-rumor p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* CONNECTIONS */

.loc-connections {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: #1a1a1f;
  border: 1px solid #1a1a1f;
}

.loc-connection {
  background: #0d0d10;
  padding: 1rem 1.5rem;
  text-decoration: none;
  flex: 1;
  min-width: 160px;
  transition: background 0.15s;
  position: relative;
}

.loc-connection::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.loc-connection.c-cyan::before   { background: #00ffe1; }
.loc-connection.c-pink::before   { background: #ff2d78; }
.loc-connection.c-orange::before { background: #ff8c00; }
.loc-connection.c-yellow::before { background: #ffe600; }
.loc-connection.c-purple::before { background: #bf00ff; }
.loc-connection.c-green::before  { background: #39ff14; }

.loc-connection:hover { background: #111116; }

.loc-connection-type {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.loc-connection.c-cyan   .loc-connection-type { color: #00ffe1; }
.loc-connection.c-pink   .loc-connection-type { color: #ff2d78; }
.loc-connection.c-orange .loc-connection-type { color: #ff8c00; }
.loc-connection.c-yellow .loc-connection-type { color: #ffe600; }
.loc-connection.c-purple .loc-connection-type { color: #bf00ff; }
.loc-connection.c-green  .loc-connection-type { color: #39ff14; }

.loc-connection-name {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1rem;
  color: #e8e8e8;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 700px) {
  .loc-hero {
    height: 380px;
  }

  .loc-twocol {
    grid-template-columns: 1fr;
  }

  .loc-poi-grid {
    grid-template-columns: 1fr;
  }

  .loc-figures {
    grid-template-columns: 1fr;
  }

  .loc-rumor {
    flex-direction: column;
    gap: 0.5rem;
  }
}