/* Fixenix Landing Page Hero Section UI */

.hero {
    min-height: 90vh; display: flex; align-items: center;
    padding: 6rem 2rem 4rem; scroll-margin-top: 100px;
}

.hero-title {
    font-size: 3.8rem; font-weight: 800; line-height: 1.2;
    background: linear-gradient(135deg, #fff 30%, var(--primary-red) 80%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
    color: var(--text-secondary); font-size: 1.2rem;
    border-left: 4px solid var(--primary-red); padding-left: 1rem;
}

/* Theme Adjustments for Hero */
[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #111 30%, var(--primary-red) 80%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
[data-theme="light"] .hero-sub { color: #4a4a5a; }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero { text-align: center; justify-content: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-sub { border-left: none; padding-left: 0; }
}
