/* Neighbourhood Page Styles */

.neighbourhood-body {
    background: var(--bg-primary);
    display: block;
    min-height: 100vh;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
}

/* Hero */
.nb-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 48px 24px 56px;
    text-align: center;
}

.nb-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.nb-back {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.nb-back:hover {
    color: white;
}

.nb-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.nb-hero-sub {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Main */
.nb-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.nb-section {
    margin-top: 48px;
}

.nb-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.nb-section > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Facts Grid */
.nb-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.nb-fact {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nb-fact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nb-fact-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.nb-fact h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.nb-fact p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Location */
.nb-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nb-address p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.nb-address strong {
    color: var(--text-primary);
}

.nb-distances h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.nb-distances ul {
    list-style: none;
    padding: 0;
}

.nb-distances li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}

.nb-distances li:last-child {
    border-bottom: none;
}

/* Footer */
.nb-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.nb-footer p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.nb-footer a {
    color: #667eea;
    text-decoration: none;
}

.nb-footer a:hover {
    text-decoration: underline;
}

.nb-footer-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .nb-hero {
        padding: 32px 16px 40px;
    }

    .nb-hero h1 {
        font-size: 28px;
    }

    .nb-hero-sub {
        font-size: 15px;
    }

    .nb-main {
        padding: 0 16px 32px;
    }

    .nb-section {
        margin-top: 32px;
    }

    .nb-facts-grid {
        grid-template-columns: 1fr;
    }

    .nb-location {
        grid-template-columns: 1fr;
    }
}
