/* LIXI Brand Guideline Styles */
:root {
    --lixi-orange: #ff8000;
    --lixi-magenta: #ff0f75;
    --lixi-heading-font: 'Poppins', sans-serif;
    --lixi-body-font: 'Source Sans Pro', sans-serif;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lixi-heading-font);
    font-weight: 700;
}

.hero-bg {
    background-color: #f0f4f8;
}

.lixi-brand-text {
    color: var(--lixi-orange);
}

.btn-brand {
    background-image: linear-gradient(-45deg, var(--lixi-orange), var(--lixi-magenta));
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Enhanced focus visibility for accessibility */
a:focus, button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.6); /* LIXI Orange with opacity */
    border-radius: 6px;
}

/* Scroll-in Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}