html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #232349;
}

::-webkit-scrollbar-thumb {
    background-color: #fa9513;
    border-radius: 6px;
    border: 2px solid #07072c;
}

.hero-bg {
    background-image: url('../img/img-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect simple */
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.active-link {
    color: #fa9513;
    position: relative;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #fa9513;
    border-radius: 50%;
}

.cta-button {
    transition: all 0.3s ease;
}