/*
 * Hero Section Styles
 */

.ar-hero {
    padding: 6rem 0;
    text-align: center;
    background: var(--color-bg-alt);
}

.ar-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ar-hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ar-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .ar-hero {
        padding: 3rem 0;
    }

    .ar-hero__title {
        font-size: 2rem;
    }
}
