/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Nav Link Hover Animation */
.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: #D4AF37;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Button Hover Effect */
.btn-gold {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #D4AF37;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-gold:hover {
    color: black !important;
}

/* Loader */
#loader {
    transition: opacity 0.5s ease;
}

/* Parallax Utilities */
.parallax-bg {
    will-change: transform;
}

/* Smooth selection */
::selection {
    background: #D4AF37;
    color: black;
}

/* Menu Item Hover */
.menu-item:hover h4 {
    color: #D4AF37;
}
