/* Home Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--srs-color-accent) 0%, #1e40af 100%);
    color: white;
    padding: var(--srs-space-xxxl) var(--srs-space-l);
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--srs-space-m);
}

.hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--srs-space-xl);
    line-height: 1.6;
}

.hero__search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: var(--srs-space-s);
}

.hero__search-input {
    flex: 1;
    padding: var(--srs-space-m) var(--srs-space-l);
    border: none;
    border-radius: var(--srs-radius-sm);
    font-size: 1rem;
}

/* Stats Section */
.stats {
    background: var(--srs-color-surface);
    padding: var(--srs-space-xl) var(--srs-space-l);
    border-bottom: 1px solid var(--srs-color-border);
}

.stats__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--srs-space-xxxl);
}

.stats__item {
    text-align: center;
}

.stats__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--srs-color-accent);
}

.stats__label {
    color: var(--srs-color-text-weak);
    font-size: 0.875rem;
}

/* Section */
.section {
    padding: var(--srs-space-xxxl) var(--srs-space-l);
}

.section--alt {
    background: var(--srs-color-surface-raised);
}

.section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--srs-space-xl);
}

.section__title {
    font-size: 1.5rem;
    font-weight: 600;
}

.section__link {
    color: var(--srs-color-accent);
    text-decoration: none;
    font-weight: 500;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--srs-space-l);
}

.category-card {
    background: var(--srs-color-surface);
    border: 1px solid var(--srs-color-border);
    border-radius: var(--srs-radius-sm);
    padding: var(--srs-space-l);
    text-decoration: none;
    transition: all 0.2s;
}

.category-card:hover {
    border-color: var(--srs-color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card__icon {
    width: 48px;
    height: 48px;
    background: var(--srs-color-status-info-weak);
    border-radius: var(--srs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--srs-color-accent);
    margin-bottom: var(--srs-space-m);
}

.category-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--srs-color-text);
    margin-bottom: var(--srs-space-xs);
}

.category-card__description {
    font-size: 0.875rem;
    color: var(--srs-color-text-weak);
    line-height: 1.5;
}

/* CTA Section */
.cta {
    background: var(--srs-color-accent);
    color: white;
    padding: var(--srs-space-xxxl) var(--srs-space-l);
    text-align: center;
}

.cta__container {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--srs-space-m);
}

.cta__text {
    opacity: 0.9;
    margin-bottom: var(--srs-space-xl);
}

.cta__actions {
    display: flex;
    gap: var(--srs-space-m);
    justify-content: center;
}

@media (max-width: 768px) {
    .hero__title { font-size: 1.75rem; }
    .hero__search { flex-direction: column; }
    .stats__container { flex-direction: column; gap: var(--srs-space-l); }
    .cta__actions { flex-direction: column; }
}

