:root {
    --tagtaly-blue: #0072cc;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.navbar-brand {
    color: #111827 !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-brand span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.brand-tag {
    color: #999;
    transition: color 0.3s ease;
}

.brand-taly {
    color: var(--tagtaly-blue);
    transition: color 0.3s ease;
}

.navbar-brand:hover .brand-tag {
    color: var(--tagtaly-blue);
}

.navbar-brand:hover .brand-taly {
    color: var(--tagtaly-blue);
    font-weight: 700;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #111827 !important;
}

.site-footer {
    background-color: #111827;
    color: #fff;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 4px solid var(--tagtaly-blue);
}

.site-footer a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: #3b42d4;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 1.25rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    background-color: #64748b;
    color: #fff !important;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

