/*
Theme Name: KTL Europe Premium Cargo Theme
Theme URI: https://ktleurope.co.uk/
Author: Leon Raharuhi
Author URI: https://stratoflow.agency/
Description: A high-performance, responsive WordPress theme tailored for premium logistics, freight, and supply-chain operations. Complete with custom interactive shipping maps, post-Brexit customs systems, and dynamic equipment blueprints.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ktl-europe
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready, full-width-template
*/

/* Reset / Custom Global Utilities matching the tailwind configuration */
.text-stroke {
    -webkit-text-stroke: 1px rgba(27, 95, 70, 0.15);
    color: transparent;
}

/* Custom Scrollbar Matching KTL Brand Guidelines */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #113d2d;
}
::-webkit-scrollbar-thumb {
    background: #FFcd46;
    border-radius: 5px;
    border: 2px solid #113d2d;
}
::-webkit-scrollbar-thumb:hover {
    background: #e0b234;
}

/* Premium Keyframe Animations for Map Trails and Technical Blueprints */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 205, 70, 0.4)); }
    50% { filter: drop-shadow(0 0 18px rgba(255, 205, 70, 0.8)); }
}
@keyframes blueprint-pulse {
    0%, 100% { stroke-opacity: 0.3; }
    50% { stroke-opacity: 0.95; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}
.blueprint-animate {
    animation: blueprint-pulse 2.5s ease-in-out infinite;
}

/* WordPress Core Layout Alignment Classes */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 100%;
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption-text {
    font-size: 0.85em;
    margin: 0;
    padding: 0 5px;
}