/* Homepage specific styles */

.header {
    margin-bottom: 3rem;
}

.logo svg {
    height: 32px;
}

.subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #202020;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    color: var(--accent-hover);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1rem;
    font-family: 'AT Name Mono', monospace;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .logo svg {
        height: 24px;
    }
}
