/* Shared Navigation Styles */
:root {
    --nav-bg: rgba(17, 24, 39, 0.9); /* Gray-900/90 */
    --nav-border: rgba(31, 41, 55, 1); /* Gray-800 */
    --nav-text: rgba(255, 237, 213, 1); /* Orange-100 */
    --nav-text-muted: rgba(253, 186, 116, 0.9); /* Orange-300/90 */
    --nav-accent: #f97316; /* Orange-500 */
    --nav-hover-bg: rgba(255, 255, 255, 0.05);
}

body {
    padding-top: 80px;
    /* Prevent content from being hidden behind fixed nav */
}

.tools-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-border);
    font-family: 'Outfit', sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 700;
    font-size: 1.25rem;
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    color: var(--nav-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--nav-text);
}

.nav-link.active {
    color: var(--nav-text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--nav-accent);
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-logo span {
        display: none;
    }
}

/* Home Button Style (Replicated from Laravel) */
.nav-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    /* orange-500/30 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: rgba(253, 186, 116, 0.9);
    /* orange-300/90 */
}

.nav-home-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2), 0 4px 6px -2px rgba(249, 115, 22, 0.1);
    color: rgba(255, 237, 213, 1);
    /* orange-100 */
}

.nav-home-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}