/* Base Styles */
body {
    background-color: #F5F2EB;
    color: #1C1917;
    overflow-x: hidden;
}

::selection {
    background: #CD6833;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F2EB;
}
::-webkit-scrollbar-thumb {
    background: #CD6833;
    border-radius: 4px;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: sepia(20%) contrast(110%);
}

/* Marquee Animation (Moved to CSS for stability) */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Drop Animation for scroll indicator */
@keyframes drop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
.animate-drop {
    animation: drop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-icon {
    margin-top: 2px;
}
