/* Custom Animations & Utilities */
.svg-gold-filter {
    background-color: rgb(230,179,37);
    -webkit-mask: url("../img/scissor-and-comb3.svg") no-repeat center / contain;
    mask: url("../img/scissor-and-comb3.svg") no-repeat center / contain;
    display: inline-block;
}

.reveal-container {
    overflow: hidden;
}

.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Links Hover Effect */
.mobile-link {
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-link:hover {
    transform: translateX(10px);
    color: #0a0a0a;
}

/* Custom Scrollbar (Optional) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E6B325;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c29210;
}

/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.dark ::-webkit-scrollbar-thumb {
    background: #E6B325;
}
