﻿/* ===== Tau Layout V2 (added) ===== */
:root {
    --tau-bg: #070A12;
    --tau-text: #EAF0FF;
    --tau-muted: #A7B2D6;
    --tau-accent: #20E3FF;
    --tau-accent2: #7C3AED;
}

.tau-body {
    background: var(--tau-bg);
    color: var(--tau-text);
}

.tau-skip {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: #fff;
    color: #000;
    padding: .5rem .75rem;
    border-radius: 10px;
    z-index: 9999;
}

    .tau-skip:focus {
        left: 8px;
    }

.tau-header {
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(7,10,18,.35);
    backdrop-filter: blur(12px);
}

    .tau-header.tau-scrolled {
        background: rgba(7,10,18,.78);
        border-color: rgba(32,227,255,.16);
        box-shadow: 0 18px 70px rgba(0,0,0,.45);
    }

    /* Bigger navbar */
    .tau-header .navbar {
        padding-top: .85rem;
        padding-bottom: .85rem;
    }

    .tau-header .nav-link {
        font-size: 1.05rem;
        color: rgba(255,255,255,.88) !important;
    }

        .tau-header .nav-link:hover {
            color: #fff !important;
        }

.tau-logo {
    height: 40px;
    width: auto;
}

.tau-logo-sm {
    height: 34px;
    width: auto;
}

.tau-nav-cta {
    border-radius: 999px;
    padding: .65rem 1.0rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(90deg, rgba(32,227,255,.18), rgba(124,58,237,.18));
    color: var(--tau-text);
}

    .tau-nav-cta:hover {
        border-color: rgba(32,227,255,.45);
        color: var(--tau-text);
    }

.tau-main {
    padding-top: 88px;
}
/* more room for bigger navbar */

/* Footer */
.tau-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
}

.tau-footer-h {
    font-size: 1.05rem;
    margin-bottom: .75rem;
}

.tau-footer-text {
    color: var(--tau-muted);
}

.tau-footer-link {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.18);
}

    .tau-footer-link:hover {
        border-bottom-color: rgba(32,227,255,.55);
        color: #fff;
    }

.tau-social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.9);
    text-decoration: none;
}

    .tau-social:hover {
        border-color: rgba(32,227,255,.35);
        color: #fff;
    }

.tau-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
}

.tau-map summary {
    cursor: pointer;
    color: rgba(255,255,255,.9);
    list-style: none;
}

    .tau-map summary::-webkit-details-marker {
        display: none;
    }
