/* ===========================================================
   PORTFOLIO - ENGLISH LTR STYLES
   Overrides & language-specific tweaks for English version
   =========================================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --dir: ltr;
    --start: left;
    --end: right;
    --font-primary: 'Poppins', system-ui, sans-serif;
    --align-hero: start;
}

html {
    direction: ltr;
}

body {
    font-family: var(--font-primary);
}

/* English-specific letter spacing */
.label-tag,
.hero-greeting,
.stat-label,
.portfolio-category,
.featured-label,
.service-link,
.footer-copy {
    letter-spacing: 0.08em;
}

/* Left border emphasis for mission block */
.about-mission {
    border-inline-start: 4px solid var(--folio-accent);
    border-inline-end: none;
    border-radius: 0 16px 16px 0;
}

/* Service card link arrow animation direction */
.service-card:hover .service-link i {
    transform: translateX(6px);
}

/* Marquee direction for LTR */
.clients-track {
    animation-name: marquee-ltr;
}

/* Client logo dark-mode invert */
.client-logo--dark {
    filter: invert(0.85) grayscale(100%) brightness(2);
}

/* Footer social links reset */
.footer-social {
    margin-block-start: 0;
}

@keyframes marquee-ltr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
