/* Homelib custom styles */

/* Hero section */
.hero-section {
    text-align: center;
    padding: var(--space-lg) 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.hero-section h3 {
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.cta-links {
    margin-top: var(--space-md);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cta-button:hover {
    opacity: 0.85;
    color: white;
}

/* Features grid */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
}

.feature h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}
