/*
Theme Name: Blocksy Child - TKF Logistics
Theme URI: https://tkflogistics.com
Description: Thème enfant Blocksy premium pour TKF Logistics - Vente de conteneurs et remorques
Author: TKF Logistics
Author URI: https://tkflogistics.com
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child-tkf
*/

/* =====================================================
   TKF Logistics - Styles additionnels
   ===================================================== */

:root {
    --tkf-primary: #0284c7;
    --tkf-primary-dark: #0369a1;
    --tkf-secondary: #0f172a;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--tkf-primary);
    border-radius: 4px;
}

/* Hero background attachment fix mobile */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll !important;
    }
}

/* Line clamp utility (si besoin) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}