/* ── Navbar ── */
.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    border-bottom: 1px solid #ddd;
    font-family: var(--bs-font-sans-serif);
}

.title-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--bs-font-sans-serif);
}

/* ── Hero ── */
.home-hero {
    text-align: center;
    padding: 40px 20px 20px;
}

.karibu-title {
    display: inline-block;
    background-color: burlywood;
    border: 10px outset burlywood;
    padding: 10px;
    max-width: 100%;
}

.home-welcome {
    font-size: 1.1rem;
    color: #555;
    margin: 8px 0 20px;
}

.home-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* ── Map card ── */
.home-map-section {
    display: flex;
    justify-content: center;
    padding: 24px 20px;
}

.home-map-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    display: inline-block;
}

.home-map-img {
    max-width: 340px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.home-map-caption {
    margin: 10px 0 2px;
    font-size: 0.85rem;
    color: #555;
}

.home-map-sub {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

/* ── Light sections (Quick Facts) ── */
.home-section {
    padding: 32px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.home-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 24px;
}

.home-section-title::before,
.home-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* ── Quick Facts ── */
.facts-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.fact-card {
    flex: 1;
    min-width: 160px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.fact-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.fact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

/* ── Explore (dark) ── */
.explore-dark-section {
    background-color: #1c1c28;
    padding: 40px 24px 48px;
    margin-top: 8px;
}

.explore-dark-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #aaa;
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.explore-dark-title::before,
.explore-dark-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}

.explore-card {
    display: block;
    background-color: #26263a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 28px 20px 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.15s, background-color 0.15s;
}

.explore-card:hover {
    background-color: #2e2e46;
    border-color: #555;
    color: #fff;
    text-decoration: none;
}

.explore-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.explore-card h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.explore-card p {
    margin: 0;
    font-size: 0.875rem;
    color: #aaa;
}

/* ── Shared utility ── */
.main-txt {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.feature-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
