/* ========================================
   SIMPLIFIED VISUAL EFFECTS
   ======================================== */

/* ===== Scroll Progress Indicator ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #C8B588 0%, #B29A61 50%, #A68955 100%);
    z-index: 99999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(200, 181, 136, 0.6);
}

/* ===== Particle Container ===== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(200, 181, 136, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Custom Cursor ===== */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #C8B588;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #C8B588;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(200, 181, 136, 0.1);
}

/* ===== Smooth Button Effects ===== */
.all_btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.all_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.all_btn:hover::before {
    width: 300px;
    height: 300px;
}

.all_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.all_btn:hover::after {
    left: 100%;
}

/* Ensure button content stays on top */
.all_btn > * {
    position: relative;
    z-index: 1;
}

/* ===== Header Blur Effect - DISABLED ===== */
/*
#header.scroll-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#header.scroll-header:not(.other-pages) {
    background: rgba(255, 255, 255, 0.9) !important;
}
*/

/* Burger menu always black background, overrides blur effect - works for both regular and other-pages headers */
#header.active,
#header.other-pages.active,
#header.scroll-header.active,
#header.other-pages.scroll-header.active {
    background: #1E1E1E !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-progress {
        transition: none;
    }
}
