/* Custom styles for eSoluna Consulting */

:root {
    --accent: #0EA5E9;
}

.service-card {
    border: 1px solid #e2e8f0;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0EA5E9;
    transition: width 0.2s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Subtle improvements */
h1, h2, h3 {
    letter-spacing: -0.025em;
}

@media (max-width: 768px) {
    .hero-bg h1 {
        font-size: 3.2rem;
        line-height: 1.05;
    }
}