/* Custom styles for Highwayve - Hivemapper Style */

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced typography for better readability */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hero section typography refinements */
#home h1 {
    font-weight: 800;
    line-height: 1.1;
}

#home p {
    font-weight: 400;
    line-height: 1.6;
}

/* Custom link hover - simple underline (no fancy animations) */
.nav-link {
    position: relative;
    display: inline-block;
}

/* Active navigation state - minimal */
.nav-link.active {
    color: #8b5cf6;
}

/* Remove previous dark theme specific scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Remove scroll animation classes - keep things simple */

/* Logo Scrolling Banner Animation */
.logo-scroll-container {
    width: 100%;
    overflow: hidden;
}

.logo-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
