body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-custom-highlight {
    color: #f59e0b;
}
.bg-custom-highlight {
    background-color: #f59e0b;
}
.border-custom-highlight {
    border-color: #f59e0b;
}

.nav-active {
    color: #f59e0b;
    font-weight: 600;
}

#home {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-section {
    min-height: 100vh;
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-list li {
    position: relative;
    padding-left: 1.75rem;
}
.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: #f59e0b;
    font-weight: 600;
}
