/* ==========================
   ZAKI LANDING – STYLE SHEET (English LTR)
   ========================== */

/* Language-specific overrides for English (LTR) */
html {
    direction: ltr;
}

/* LTR-specific navigation adjustments */
.nav__container {
    flex-direction: row;
}

.nav__menu {
    margin-left: auto;
}

.lang-switch-container {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

/* LTR-specific text alignment */
.hero,
.features__title,
.cta {
    text-align: center !important;
}

.hero__title,
.hero__subtitle {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.feature {
    text-align: center;
}

/* LTR-specific button spacing */
.hero__actions {
    flex-direction: row;
    justify-content: center;
}

/* Mobile responsive adjustments for LTR */
@media (max-width: 768px) {
    .nav__menu {
        text-align: left;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Print styles */
@media print {
    body {
        direction: ltr;
    }
}
