/* 
 * Valdes Parfums LinkTree - Custom Styles
 * Custom animations and design elements only
 */

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #d4a547;
    border-radius: 3px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 165, 71, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 165, 71, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

.animate-delay-7 {
    animation-delay: 0.7s;
}

.animate-delay-8 {
    animation-delay: 0.8s;
}

.link-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 165, 71, 0.25);
}

.link-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.logo-container {
    animation: fadeInUp 0.6s ease forwards, pulse-glow 3s ease-in-out 0.6s infinite;
    opacity: 0;
    border-radius: 9999px;
}

.gradient-border {
    background: linear-gradient(135deg, #d4a547, #c08c36, #d4a547);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
}

/* Background pattern */
.bg-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 165, 71, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 71, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(212, 165, 71, 0.03) 0%, transparent 40%);
}

/* QR Modal */
.modal-overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}