/* assets/css/style.css */

/* Custom Animations and Overrides */
@layer utilities {
    .glass {
        background: rgba(30, 20, 15, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .glass-hover:hover {
        background: rgba(30, 20, 15, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.5);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
    
    .gold-text-gradient {
        background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f0a05; /* Very dark wood color */
    color: #e5e5e5;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar for premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0a05; 
}
::-webkit-scrollbar-thumb {
    background: #5c4033; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; 
}

/* Video Background Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 10, 5, 0.6) 0%, rgba(15, 10, 5, 0.9) 100%);
    z-index: 1;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.floating-wa {
    position: fixed;
    z-index: 1000;
    width: 48px;
    height: 48px;
    bottom: 30px;
    right: 30px;
    background-color: #D4AF37;
    color: #1a110a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
