/* styles.css */
body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: #2E425B;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.03em;
}

section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #2E425B;
}

::-webkit-scrollbar-thumb:hover {
    background: #1F2D3D;
}

::selection {
    background: #FFD871; /* izi-orange */
    color: #2E425B;      /* izi-dark */
}
