/*
Theme Name: FMCG Trading UAB
Theme URI: https://fmcgtrading.com
Author: FMCG Development
Description: Premium B2B Wholesale Theme for FMCG TRADING UAB.
Version: 1.0
Text Domain: fmcg-trading
*/

/* Custom utilities for the front-page.php design */
.text-gradient {
    background: linear-gradient(to right, #111827, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Smooth reveal transition classes */
.reveal {
    opacity: 1; /* Set to 0 if you add JS scroll reveal later */
    transition: all 0.8s ease-out;
}