/* Custom Styles */

/* Stroke text effect for 'Explorers' */
.stroke-text {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.stroke-text-sm {
    -webkit-text-stroke: 1px currentColor;
    color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C2A58D;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0856E;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Hide scrollbar for x-cloak */
[x-cloak] { 
    display: none !important; 
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
