/**
 * Web Circle Navigation
 * Interconnected site navigation integrated into footer
 */

/* Footer brand with Speeday font - increased size and letter-spacing */
.footer-brand {
    font-family: 'Speeday', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

/* Web circle integrated as div within footer */
.site-footer .web-circle {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.web-circle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.web-circle-title {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Speeday font links (gold accent for Australia) - increased size and letter-spacing */
.web-circle a {
    color: #d4a520;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s ease;
    font-family: 'Speeday', sans-serif;
    letter-spacing: 0.05em;
}

.web-circle a:hover {
    color: #e6b82e;
    text-decoration: underline;
}

.web-circle .sep {
    color: #555;
    margin: 0 0.25rem;
}

@media (max-width: 600px) {
    .web-circle-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .web-circle .sep {
        display: none;
    }

    .web-circle a {
        font-size: 1rem;
    }
}