/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #4a3018;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Text Glow Effects */
.glow-gold-text {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6), 0 0 45px rgba(212, 175, 55, 0.4);
}
.glow-hover:hover {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}
.mystical-red-text {
    color: #cc0000;
    -webkit-text-stroke: 1px #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Mist Animation in Hero */
.mist-container {
    background: url('https://www.transparenttextures.com/patterns/dust.png');
    animation: mist-move 30s linear infinite;
    mix-blend-mode: screen;
}
@keyframes mist-move {
    0% { background-position: 0 0; }
    100% { background-position: 1000px -500px; }
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-primary .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #d4af37;
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}
.btn-primary:hover {
    color: #050505;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    background: transparent;
    color: #9ca3af;
    border: 1px solid #374151;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    color: #fff;
    border-color: #6b7280;
}

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Testimonial Slider */
.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #374151;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

/* Utilities */
.scrolled-nav {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Animation Utilities */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.animate-slow-zoom {
    animation: slow-zoom 20s ease-in-out infinite;
}
